(self)
| 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() |
| 678 | assert tp._try_parse_number("None") is None |
| 679 | |
| 680 | def test_string_null(self): |
| 681 | tp = self._make_processor() |
nothing calls this directly
no test coverage detected