PY-18282 and PY-18163: adding tests and fixing same trouble for py.test

This commit is contained in:
Ilya.Kazakevich
2016-01-26 22:33:02 +03:00
parent 0151149dac
commit 42c1f49162
19 changed files with 212 additions and 39 deletions
@@ -0,0 +1,6 @@
import unittest
class TestBase(unittest.TestCase):
pass
@@ -0,0 +1,12 @@
# This does not work
import aid.test.base
class Th<caret>eTest(aid.test.base.TestBase):
def test_case_1(self):
self.fail()
def test_case_2(self):
pass