You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
510 B

  1. '''
  2. Created on Jan 26, 2014
  3. @author: Chris
  4. '''
  5. import unittest
  6. from gooey.gui.component_register import ComponentRegister
  7. class Test(unittest.TestCase):
  8. def setUp(self):
  9. class FakeClassWithoutImplementation(ComponentRegister):
  10. def __init__(self):
  11. pass
  12. self.test_class = FakeClassWithoutImplementation()
  13. def testHostClassReceivesMixinFunctions(self):
  14. pass
  15. if __name__ == "__main__":
  16. #import sys;sys.argv = ['', 'Test.testName']
  17. unittest.main()