Negative int roundtrips correctly.
(self)
| 105 | assert result == 42 |
| 106 | |
| 107 | def test_negative(self) -> None: |
| 108 | """Negative int roundtrips correctly.""" |
| 109 | result = _roundtrip(-1) |
| 110 | assert result == -1 |
| 111 | |
| 112 | def test_large_positive(self) -> None: |
| 113 | """Large positive int roundtrips correctly.""" |
nothing calls this directly
no test coverage detected