Negative float roundtrips correctly.
(self)
| 134 | assert result == pytest.approx(3.14159) |
| 135 | |
| 136 | def test_negative(self) -> None: |
| 137 | """Negative float roundtrips correctly.""" |
| 138 | result = _roundtrip(-2.718) |
| 139 | assert result == pytest.approx(-2.718) |
| 140 | |
| 141 | def test_very_small(self) -> None: |
| 142 | """Very small float roundtrips correctly.""" |
nothing calls this directly
no test coverage detected