mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-19 13:02:30 +07:00
PY-19738: test added
Run tests, then delete files, and try to rerun it. Message and exc. should be displayed
This commit is contained in:
14
python/testData/testRunner/env/unit/tests_to_rerun.py
vendored
Normal file
14
python/testData/testRunner/env/unit/tests_to_rerun.py
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
__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
|
||||
Reference in New Issue
Block a user