Пример #1
0
 def test_list(self):
     self.assertTrue(type(task2.data_structure()) is list)
Пример #2
0
 def test_0(self):
     self.assertTrue(type(task2.data_structure()[0]) is int)
Пример #3
0
 def test_3_2(self):
     self.assertTrue(type(task2.data_structure()[3][2]) is time)
Пример #4
0
 def test_4(self):
     self.assertTrue(type(task2.data_structure()[4]) is set)
Пример #5
0
 def test_3_1(self):
     self.assertTrue(type(task2.data_structure()[3][1]) is date)
Пример #6
0
 def test_3_0(self):
     self.assertTrue(type(task2.data_structure()[3][0]) is datetime)
Пример #7
0
 def test_3(self):
     self.assertTrue(type(task2.data_structure()[3]) is tuple)
Пример #8
0
 def test_2(self):
     self.assertTrue(type(task2.data_structure()[2]) is str)
Пример #9
0
 def test_1(self):
     self.assertTrue(type(task2.data_structure()[1]) is float)