pywal/tests/test_main.py
2017-07-24 22:29:20 +10:00

20 lines
440 B
Python

"""Test __main__ functions."""
import unittest
from pywal import __main__
from pywal.settings import CACHE_DIR
class TestMain(unittest.TestCase):
"""Test the gen_colors functions."""
def test_clean(self):
"""> Test arg parsing (-c)"""
args = __main__.get_args(["-c"])
__main__.process_args(args)
self.assertFalse((CACHE_DIR / "schemes").is_dir())
if __name__ == "__main__":
unittest.main()