PY-18839: Adding test

This commit is contained in:
Ilya.Kazakevich
2016-07-19 17:35:10 +03:00
parent d9ed9d471b
commit 5045164a0d
3 changed files with 35 additions and 2 deletions
+13
View File
@@ -0,0 +1,13 @@
import unittest
from unittest import TestCase
class BaseTestCases:
class TestAbstract(TestCase):
def test_a(self):
raise Exception()
class TestDerived(BaseTestCases.TestAbstract):
def test_b(self):
print("Running from derived class")