Tests improved: configurations are no checked in more natural way

This commit is contained in:
Ilya.Kazakevich
2017-02-04 22:10:55 +03:00
parent a896c56605
commit f4583c27ac
8 changed files with 77 additions and 45 deletions

View File

@@ -0,0 +1,11 @@
# This does not work
def spa<caret>m():
"""
>>> 1 == 1
> 1
:return:
"""
pass

View File

@@ -2,7 +2,6 @@
import aid.test.base
class Th<caret>eTest(aid.test.base.TestBase):
def test_case_1(self):

View File

@@ -0,0 +1,12 @@
# This does not work
import aid.test.base
sp<caret>am=42
class TheTest(aid.test.base.TestBase):
def test_case_1(self):
self.fail()
def test_case_2(self):
pass