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

Removed dummy tests, remove runtests bash script, since there is make target

for invoke running tests.
This commit is contained in:
2009-05-04 16:09:48 +00:00
parent efaccd8902
commit b0964ca031
4 changed files with 0 additions and 38 deletions

View File

@@ -1,4 +0,0 @@
#!/bin/sh
# run unittests
cd src/test
python run_tests.py

View File

View File

@@ -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()

View File

@@ -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()