summaryrefslogtreecommitdiff
path: root/tests/test_main.py
blob: 4dbe5800d62a63f9e7e0c2ef155ba7543d015f08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
"""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()