Large negative int roundtrips correctly.
(self)
| 115 | assert result == 10**15 |
| 116 | |
| 117 | def test_large_negative(self) -> None: |
| 118 | """Large negative int roundtrips correctly.""" |
| 119 | result = _roundtrip(-(10**15)) |
| 120 | assert result == -(10**15) |
| 121 | |
| 122 | |
| 123 | class TestFloat: |
nothing calls this directly
no test coverage detected