Esempio n. 1
0
 def test_make_list_without_list(self):
     output = fu.make_list( 0 )
     assert isinstance( output, list )
     assert np.allclose( output, [0] )
Esempio n. 2
0
 def test_make_list_without_list(self):
     output = fu.make_list( 0 )
     assert isinstance( output, list )
     assert np.allclose( output, [0] )
Esempio n. 3
0
 def test_make_list_with_list(self):
     output = fu.make_list( [0,1,2] )
     assert isinstance( output, list )
     assert np.allclose( output, [0,1,2] )
Esempio n. 4
0
 def test_make_list_with_list(self):
     output = fu.make_list( [0,1,2] )
     assert isinstance( output, list )
     assert np.allclose( output, [0,1,2] )