Positive float roundtrips correctly.
(self)
| 129 | assert result == 0.0 |
| 130 | |
| 131 | def test_positive(self) -> None: |
| 132 | """Positive float roundtrips correctly.""" |
| 133 | result = _roundtrip(3.14159) |
| 134 | assert result == pytest.approx(3.14159) |
| 135 | |
| 136 | def test_negative(self) -> None: |
| 137 | """Negative float roundtrips correctly.""" |
nothing calls this directly
no test coverage detected