summaryrefslogtreecommitdiff
path: root/tests/test_main.py
diff options
context:
space:
mode:
authorDylan Araps <dylan.araps@gmail.com>2017-07-24 00:00:35 +1000
committerDylan Araps <dylan.araps@gmail.com>2017-07-24 00:00:35 +1000
commit7ebc29ff3406feb973eb9ad81863b33a918047c3 (patch)
tree5260d14656d8026ef4a505b3792e44b5daab818d /tests/test_main.py
parentb678a60a239cf08d7eb30906aa28c401c80e3dba (diff)
tests: Remove shitty tests
Diffstat (limited to 'tests/test_main.py')
-rw-r--r--tests/test_main.py62
1 files changed, 1 insertions, 61 deletions
diff --git a/tests/test_main.py b/tests/test_main.py
index 400962e..ad0f6fe 100644
--- a/tests/test_main.py
+++ b/tests/test_main.py
@@ -1,6 +1,5 @@
"""Test __main__ functions."""
import unittest
-import os
from pywal import __main__
from pywal.settings import __cache_dir__
@@ -9,70 +8,11 @@ from pywal.settings import __cache_dir__
class TestMain(unittest.TestCase):
"""Test the gen_colors functions."""
- def test_main(self):
- """> Test main function."""
- with self.assertRaises(SystemExit):
- __main__.main()
-
- def test_no_args(self):
- """> Test no args."""
- with self.assertRaises(SystemExit):
- args = __main__.get_args([""])
- __main__.process_args(args)
-
- def test_conflict(self):
- """> Test arg parsing (-i, -f)"""
- with self.assertRaises(SystemExit):
- args = __main__.get_args(["-i", "file", "-f", "file"])
- __main__.process_args(args)
-
- def test_version(self):
- """> Test arg parsing (-v)"""
- with self.assertRaises(SystemExit):
- args = __main__.get_args(["-v"])
- __main__.process_args(args)
-
- def test_quiet(self):
- """> Test arg parsing (-q)"""
- args = __main__.get_args(["-q"])
- __main__.process_args(args)
- self.assertTrue(args.q)
-
- def test_alpha(self):
- """> Test arg parsing (-a)"""
- args = __main__.get_args(["-a", "99"])
- __main__.process_args(args)
- self.assertTrue(args.a)
-
- def test_ext_script(self):
- """> Test arg parsing (-o)"""
- args = __main__.get_args(["-o", "true"])
- __main__.process_args(args)
- self.assertTrue(args.o)
-
def test_clean(self):
"""> Test arg parsing (-c)"""
args = __main__.get_args(["-c"])
__main__.process_args(args)
- self.assertFalse(os.path.isdir(__cache_dir__ / "schemes"))
-
- def test_reload(self):
- """> Test arg parsing (-r)"""
- with self.assertRaises(SystemExit):
- args = __main__.get_args(["-r"])
- __main__.process_args(args)
-
- def test_image(self):
- """> Test arg parsing (-i)"""
- args = __main__.get_args(["-i", "tests/test_files/test.jpg"])
- __main__.process_args(args)
- self.assertTrue(args.i)
-
- def test_json(self):
- """> Test arg parsing (-f)"""
- args = __main__.get_args(["-f", "tests/test_files/test_file.json"])
- __main__.process_args(args)
- self.assertTrue(args.f)
+ self.assertFalse((__cache_dir__ / "schemes").is_dir())
if __name__ == "__main__":