summaryrefslogtreecommitdiff
path: root/tests/test_colors.py
diff options
context:
space:
mode:
authorDylan Araps <dylan.araps@gmail.com>2017-07-20 23:39:19 +1000
committerDylan Araps <dylan.araps@gmail.com>2017-07-20 23:39:19 +1000
commit4fd592b7d0a5fcf6674d07f34e6d92051634fc6c (patch)
tree86dc37b60a5411c7a67ca968a1323f37834b22a3 /tests/test_colors.py
parentced562e4dfa67ff36d64684dfc0d7335306aeb97 (diff)
tests: Fix tests.
Diffstat (limited to 'tests/test_colors.py')
-rw-r--r--tests/test_colors.py21
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/test_colors.py b/tests/test_colors.py
deleted file mode 100644
index 077600e..0000000
--- a/tests/test_colors.py
+++ /dev/null
@@ -1,21 +0,0 @@
-"""Test image functions."""
-import unittest
-
-from pywal import image
-
-
-class TestImage(unittest.TestCase):
- """Test image functions."""
- def test_get_img(self):
- """> Validate image file."""
- result = image.get_image("tests/test_files/test.jpg")
- self.assertEqual(result, "tests/test_files/test.jpg")
-
- def test_get_img_dir(self):
- """> Validate image directory."""
- result = image.get_image("tests/test_files")
- self.assertEqual(result, "tests/test_files/test.jpg")
-
-
-if __name__ == "__main__":
- unittest.main()