(self)
| 670 | assert tp._try_parse_number(None) is None |
| 671 | |
| 672 | def test_not_string(self): |
| 673 | tp = self._make_processor() |
| 674 | assert tp._try_parse_number(42) == 42 # not a string, returned as-is |
| 675 | |
| 676 | def test_string_none(self): |
| 677 | tp = self._make_processor() |
nothing calls this directly
no test coverage detected