Positive int roundtrips correctly.
(self)
| 100 | assert result == 0 |
| 101 | |
| 102 | def test_positive(self) -> None: |
| 103 | """Positive int roundtrips correctly.""" |
| 104 | result = _roundtrip(42) |
| 105 | assert result == 42 |
| 106 | |
| 107 | def test_negative(self) -> None: |
| 108 | """Negative int roundtrips correctly.""" |
nothing calls this directly
no test coverage detected