False roundtrips to False.
(self)
| 87 | assert _roundtrip(True) is True |
| 88 | |
| 89 | def test_false(self) -> None: |
| 90 | """False roundtrips to False.""" |
| 91 | assert _roundtrip(False) is False |
| 92 | |
| 93 | |
| 94 | class TestInt: |
nothing calls this directly
no test coverage detected