Example #1
0
 def test_is_list_flat_empty_list(self):
     list = []
     res = clc_inv._is_list_flat(list)
     self.assertEqual(res, True)
Example #2
0
 def test_is_list_flat_empty_list(self):
     list = []
     res = clc_inv._is_list_flat(list)
     self.assertEqual(res, True)
Example #3
0
 def test_is_list_flat(self):
     list = [1,2,3]
     res = clc_inv._is_list_flat(list)
     self.assertEqual(res, True)
Example #4
0
 def test_is_list_flat(self):
     list = [1, 2, 3]
     res = clc_inv._is_list_flat(list)
     self.assertEqual(res, True)