From b0964ca03198d937d5c37a332d010c3c9ba8f543 Mon Sep 17 00:00:00 2001 From: gryf Date: Mon, 4 May 2009 16:09:48 +0000 Subject: [PATCH] Removed dummy tests, remove runtests bash script, since there is make target for invoke running tests. --- runtests.sh | 4 ---- test/__init__.py | 0 test/unit/dummy_test.py | 17 ----------------- test/unit/foo_bar_test.py | 17 ----------------- 4 files changed, 38 deletions(-) delete mode 100755 runtests.sh delete mode 100644 test/__init__.py delete mode 100644 test/unit/dummy_test.py delete mode 100644 test/unit/foo_bar_test.py diff --git a/runtests.sh b/runtests.sh deleted file mode 100755 index cd0f200..0000000 --- a/runtests.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh -# run unittests -cd src/test -python run_tests.py diff --git a/test/__init__.py b/test/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/test/unit/dummy_test.py b/test/unit/dummy_test.py deleted file mode 100644 index c2e3356..0000000 --- a/test/unit/dummy_test.py +++ /dev/null @@ -1,17 +0,0 @@ -""" - Project: pyGTKtalog - Description: This is simple dummy test for... testing purposes :) - Type: test - Author: Roman 'gryf' Dobosz, gryf73@gmail.com - Created: 2008-12-15 -""" -import unittest - -class TestDummy(unittest.TestCase): - """Fake test class""" - def test_dummy_method(self): - """Test simple assertion""" - self.assertTrue(True) - -if __name__ == "__main__": - unittest.main() diff --git a/test/unit/foo_bar_test.py b/test/unit/foo_bar_test.py deleted file mode 100644 index 13a8860..0000000 --- a/test/unit/foo_bar_test.py +++ /dev/null @@ -1,17 +0,0 @@ -""" - 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()