mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 09:05:52 +07:00
4 lines
124 B
Python
4 lines
124 B
Python
import unittest
|
|
class MyTestCase(unittest.TestCase):
|
|
def test_case(self):
|
|
self.assertEqual(1, 2, ('a', 'tuple')) |