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