(self)
| 678 | assert tp._try_parse_number("None") is None |
| 679 | |
| 680 | def test_string_null(self): |
| 681 | tp = self._make_processor() |
| 682 | assert tp._try_parse_number("null") is None |
| 683 | |
| 684 | def test_whitespace(self): |
| 685 | tp = self._make_processor() |
nothing calls this directly
no test coverage detected