예제 #1
0
 def test_numpyarray_passes(self):
     dimensions(np.asarray(((1, 2), (3, 4))), 2)
예제 #2
0
 def test_numpyarray_fails(self):
     with pytest.raises(ValueError):
         dimensions(np.asarray(((1, 2), (3, 4))), 1)
예제 #3
0
 def test_list_of_list_fails(self):
     with pytest.raises(ValueError):
         dimensions(((1, 2), (3, 4)), 1)
예제 #4
0
 def test_list_of_list_passes(self):
     dimensions(((1, 2), (3, 4)), 2)
예제 #5
0
 def test_list_passes(self):
     dimensions((1, 2), 1)
예제 #6
0
 def test_scalar_fails(self):
     with pytest.raises(ValueError):
         dimensions(1, 1)
예제 #7
0
 def test_scalar_passes(self):
     dimensions(1, 0)