Source code for fabric_colors.tests

import unittest


[docs]class testFabricColors(unittest.TestCase):
[docs] def setUp(self): """ Set up data used in the tests. setUp is called before each test function execution. """ pass
[docs] def dummyTest(self): pass

This Page