mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 11:35:12 +07:00
9 lines
154 B
Python
9 lines
154 B
Python
import unittest
|
|
|
|
from .stubs import A
|
|
|
|
class TestSomeClass(unittest.TestCase):
|
|
def test_some_class(self):
|
|
some_class = A
|
|
pass
|
|
|