()
| 643 | |
| 644 | |
| 645 | def test_round_trip_float(): |
| 646 | arr = np.zeros((), np.float64) |
| 647 | arr[()] = 37.2 |
| 648 | assert m.round_trip_float(arr) == 37.2 |
| 649 | |
| 650 | |
| 651 | # HINT: An easy and robust way (although only manual unfortunately) to check for |
nothing calls this directly
no outgoing calls
no test coverage detected