test_properties.py 287 B

1234567891011121314
  1. from unittest import TestCase
  2. from properties import compress_color, compress_font, compress_dimension
  3. class TestProperties(TestCase):
  4. def test_compress_color(self):
  5. pass
  6. def test_compress_font(self):
  7. pass
  8. def test_compress_dimension(self):
  9. pass