""" Project: pyGTKtalog Description: This is another dummy test. Type: test Author: Roman 'gryf' Dobosz, gryf73@gmail.com Created: 2008-12-15 """ import unittest class TestFooBar(unittest.TestCase): """Fake test class""" def test_dummy_method(self): """Test simple assertion""" self.assertTrue(True) if __name__ == "__main__": unittest.main()