(self)
| 2782 | assert_array_equal(X, np.array([1, 2, 3, 4])) |
| 2783 | |
| 2784 | def test_no_input(self): |
| 2785 | args = [] |
| 2786 | assert_array_equal([], meshgrid(*args)) |
| 2787 | assert_array_equal([], meshgrid(*args, copy=False)) |
| 2788 | |
| 2789 | def test_indexing(self): |
| 2790 | x = [1, 2, 3] |
nothing calls this directly
no test coverage detected