(self, tmp_filename)
| 5597 | b'1,2,3,4', [1., 2., 3., 4.], tmp_filename, count=-1, sep=',') |
| 5598 | |
| 5599 | def test_string_with_ws(self, tmp_filename): |
| 5600 | self._check_from( |
| 5601 | b'1 2 3 4 ', [1, 2, 3, 4], tmp_filename, dtype=int, sep=' ') |
| 5602 | |
| 5603 | def test_counted_string_with_ws(self, tmp_filename): |
| 5604 | self._check_from( |
nothing calls this directly
no test coverage detected