Float zero roundtrips correctly.
(self)
| 124 | """Roundtrip tests for float values.""" |
| 125 | |
| 126 | def test_zero(self) -> None: |
| 127 | """Float zero roundtrips correctly.""" |
| 128 | result = _roundtrip(0.0) |
| 129 | assert result == 0.0 |
| 130 | |
| 131 | def test_positive(self) -> None: |
| 132 | """Positive float roundtrips correctly.""" |
nothing calls this directly
no test coverage detected