mirror of
https://github.com/dylanaraps/pywal.git
synced 2025-01-09 15:38:30 +01:00
18 lines
391 B
Python
Executable File
18 lines
391 B
Python
Executable File
"""Test gen functions."""
|
|
import unittest
|
|
|
|
from pywal import gen_colors
|
|
|
|
|
|
class TestGenColors(unittest.TestCase):
|
|
"""Test the gen_colors functions."""
|
|
|
|
def test_gen_colors(self):
|
|
"""> Generate a colorscheme."""
|
|
result = gen_colors.gen_colors("tests/test_files/test.jpg")
|
|
self.assertEqual(result[0], "#0F191A")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|