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