mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 15:35:40 +07:00
GitOrigin-RevId: 8592221541a2a7512d559184bd352dabef5b657c
14 lines
257 B
Python
14 lines
257 B
Python
from unittest import TestCase
|
|
|
|
|
|
class TheTest(TestCase):
|
|
|
|
def test_arithmetic(self):
|
|
assert 4 == 5
|
|
|
|
def test_orthography(self):
|
|
assert 'a' + 'a' == 'A'
|
|
|
|
def test_ok(self):
|
|
import sys; assert sys.version_info[:2] == (3,9)
|