1
0
mirror of https://github.com/gryf/pygtktalog.git synced 2025-12-17 19:40:21 +01:00

Moved test module into root catalog of the project.

This commit is contained in:
2009-05-04 16:05:47 +00:00
parent 434df58b16
commit efaccd8902
30 changed files with 7 additions and 49 deletions

17
test/unit/foo_bar_test.py Normal file
View File

@@ -0,0 +1,17 @@
"""
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()