Zero roundtrips correctly.
(self)
| 95 | """Roundtrip tests for integer values.""" |
| 96 | |
| 97 | def test_zero(self) -> None: |
| 98 | """Zero roundtrips correctly.""" |
| 99 | result = _roundtrip(0) |
| 100 | assert result == 0 |
| 101 | |
| 102 | def test_positive(self) -> None: |
| 103 | """Positive int roundtrips correctly.""" |
nothing calls this directly
no test coverage detected