fixing dummy tests to contain proper flags

fixing functional tests to verify these flags
This commit is contained in:
ekonstantinov
2013-07-22 12:12:55 +03:00
parent 3c5731a85d
commit b4da23e158

View File

@@ -10,15 +10,15 @@ class Dummy_test(unittest.TestCase):
def test_fast_pass(self):
"""fast pass test
This is a simple always pass test
duration: 1 sec
Duration: 1sec
"""
self.assertTrue(True)
def test_long_pass(self):
"""Will sleep 15 sec
"""Will sleep 5 sec
This is a simple test
it will run for 15 sec
duration: 15 sec
it will run for 5 sec
Duration: 5sec
"""
time.sleep(5)
self.assertTrue(True)