Example #1
0
 def test_make_list_without_list(self):
     output = fu.make_list( 0 )
     assert isinstance( output, list )
     assert np.allclose( output, [0] )
Example #2
0
 def test_make_list_without_list(self):
     output = fu.make_list( 0 )
     assert isinstance( output, list )
     assert np.allclose( output, [0] )
Example #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] )
Example #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] )