Large positive int roundtrips correctly.
(self)
| 110 | assert result == -1 |
| 111 | |
| 112 | def test_large_positive(self) -> None: |
| 113 | """Large positive int roundtrips correctly.""" |
| 114 | result = _roundtrip(10**15) |
| 115 | assert result == 10**15 |
| 116 | |
| 117 | def test_large_negative(self) -> None: |
| 118 | """Large negative int roundtrips correctly.""" |
nothing calls this directly
no test coverage detected