"testFinished" added after "testError" and "testIngore" to fix PY-16314 and PY-16313

This commit is contained in:
Ilya.Kazakevich
2015-06-26 21:14:28 +03:00
parent 2a1759536d
commit 718793cec9
6 changed files with 46 additions and 7 deletions

View File

@@ -0,0 +1,18 @@
__author__ = 'Ilya.Kazakevich'
import unittest
import time
class TestMe2(unittest.TestCase):
def test_pass(self):
time.sleep(1)
def test_raise(self):
raise ValueError
class TestMe(unittest.TestCase):
def test_pass2(self):
pass
@unittest.skip("SkipThis")
def test_skip(self):
pass