True roundtrips to True.
(self)
| 83 | """Roundtrip tests for bool values.""" |
| 84 | |
| 85 | def test_true(self) -> None: |
| 86 | """True roundtrips to True.""" |
| 87 | assert _roundtrip(True) is True |
| 88 | |
| 89 | def test_false(self) -> None: |
| 90 | """False roundtrips to False.""" |
nothing calls this directly
no test coverage detected