Skip to content

Commit c2d8ac2

Browse files
Ivan Levkivskyiilevkivskyi
authored andcommitted
Start adding tests
1 parent a8437fa commit c2d8ac2

1 file changed

Lines changed: 42 additions & 0 deletions

File tree

Lib/test/test_genericclass.py

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
import unittest
2+
3+
4+
class TestSubclassBase(unittest.TestCase):
5+
def test_subclass_base(self):
6+
pass
7+
8+
def test_subclass_base_with_builtins(self):
9+
pass
10+
11+
def test_subclass_base_errors(self):
12+
pass
13+
14+
def test_subclass_base_wrong(self):
15+
pass
16+
17+
def test_subclass_base_metaclass(self):
18+
pass
19+
20+
def test_subclass_base_type_call(self):
21+
pass
22+
23+
24+
class TestClassGetitem(unittest.TestCase):
25+
def test_class_getitem(self):
26+
pass
27+
28+
def test_class_getitem_with_builtins(self):
29+
pass
30+
31+
def test_class_getitem_errors(self):
32+
pass
33+
34+
def test_class_getitem_inheritance(self):
35+
pass
36+
37+
def test_class_getitem_metaclass(self):
38+
pass
39+
40+
41+
if __name__ == "__main__":
42+
unittest.main()

0 commit comments

Comments
 (0)