Files
Ilya.Kazakevichandintellij-monorepo-bot e75a7f2f83 Python tests: migrate tox 37->39 (37 is outdated)
GitOrigin-RevId: 8592221541a2a7512d559184bd352dabef5b657c
2024-07-31 10:18:57 +00:00

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)