mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
PY-18839: Adding test
This commit is contained in:
@@ -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")
|
||||
Reference in New Issue
Block a user