(self, tmp_filename)
| 5579 | sep=' ') |
| 5580 | |
| 5581 | def test_binary(self, tmp_filename): |
| 5582 | self._check_from( |
| 5583 | b'\x00\x00\x80?\x00\x00\x00@\x00\x00@@\x00\x00\x80@', |
| 5584 | np.array([1, 2, 3, 4]), |
| 5585 | tmp_filename, |
| 5586 | dtype='<f4') |
| 5587 | |
| 5588 | def test_string(self, tmp_filename): |
| 5589 | self._check_from(b'1,2,3,4', [1., 2., 3., 4.], tmp_filename, sep=',') |
nothing calls this directly
no test coverage detected