(self, tmp_filename, decimal_sep_localization)
| 5565 | sep=' ') |
| 5566 | |
| 5567 | def test_inf(self, tmp_filename, decimal_sep_localization): |
| 5568 | self._check_from( |
| 5569 | b"inf +inf -inf infinity -Infinity iNfInItY -inF", |
| 5570 | [np.inf, np.inf, -np.inf, np.inf, -np.inf, np.inf, -np.inf], |
| 5571 | tmp_filename, |
| 5572 | sep=' ') |
| 5573 | |
| 5574 | def test_numbers(self, tmp_filename, decimal_sep_localization): |
| 5575 | self._check_from( |
nothing calls this directly
no test coverage detected