Inkycal/inkycal/display/test_display.py
2023-05-20 03:09:15 +02:00

15 lines
341 B
Python

from unittest import TestCase
from inkycal import Display
class TestDisplay(TestCase):
# def setUp(self) -> None:
# self.display = Display()
def test_get_display_names(self):
fetched_displays = Display.get_display_names()
assert len(fetched_displays) >1
assert isinstance(fetched_displays, list)