()
| 212 | |
| 213 | |
| 214 | def test_make_c_f_array(): |
| 215 | assert m.make_c_array().flags.c_contiguous |
| 216 | assert not m.make_c_array().flags.f_contiguous |
| 217 | assert m.make_f_array().flags.f_contiguous |
| 218 | assert not m.make_f_array().flags.c_contiguous |
| 219 | |
| 220 | |
| 221 | def test_make_empty_shaped_array(): |
nothing calls this directly
no outgoing calls
no test coverage detected