()
| 219 | |
| 220 | |
| 221 | def test_make_empty_shaped_array(): |
| 222 | m.make_empty_shaped_array() |
| 223 | |
| 224 | # empty shape means numpy scalar, PEP 3118 |
| 225 | assert m.scalar_int().ndim == 0 |
| 226 | assert m.scalar_int().shape == () |
| 227 | assert m.scalar_int() == 42 |
| 228 | |
| 229 | |
| 230 | def test_wrap(): |
nothing calls this directly
no outgoing calls
no test coverage detected