(self)
| 2572 | assert_equal(a.fill_value, 0.) |
| 2573 | |
| 2574 | def test_shape_argument(self): |
| 2575 | # Test that shape can be provides as an argument |
| 2576 | # GH issue 6106 |
| 2577 | a = empty(shape=(3, )) |
| 2578 | assert_equal(a.shape, (3, )) |
| 2579 | |
| 2580 | a = ones(shape=(3, ), dtype=float) |
| 2581 | assert_equal(a.shape, (3, )) |
| 2582 | |
| 2583 | a = zeros(shape=(3, ), dtype=complex) |
| 2584 | assert_equal(a.shape, (3, )) |
| 2585 | |
| 2586 | def test_fillvalue_in_view(self): |
| 2587 | # Test the behavior of fill_value in view |
nothing calls this directly
no test coverage detected