()
| 123 | |
| 124 | |
| 125 | def test_bool_hash_equal() -> None: |
| 126 | assert RecursiveHash(True) == RecursiveHash(True) |
| 127 | assert RecursiveHash(False) == RecursiveHash(False) |
| 128 | |
| 129 | |
| 130 | def test_bool_hash_different() -> None: |
nothing calls this directly
no test coverage detected