(self)
| 2525 | assert_array_equal(X, np.array([1, 2, 3, 4])) |
| 2526 | |
| 2527 | def test_no_input(self): |
| 2528 | args = [] |
| 2529 | assert_array_equal([], meshgrid(*args)) |
| 2530 | assert_array_equal([], meshgrid(*args, copy=False)) |
| 2531 | |
| 2532 | def test_indexing(self): |
| 2533 | x = [1, 2, 3] |
nothing calls this directly
no test coverage detected