()
| 87 | |
| 88 | |
| 89 | def test_float_infinity_hash() -> None: |
| 90 | assert RecursiveHash(math.inf) == RecursiveHash(math.inf) |
| 91 | assert RecursiveHash(-math.inf) == RecursiveHash(-math.inf) |
| 92 | assert RecursiveHash(math.inf) != RecursiveHash(-math.inf) |
| 93 | |
| 94 | |
| 95 | # --------------------------------------------------------------------------- |
nothing calls this directly
no test coverage detected