(self)
| 275 | |
| 276 | @skip_unless_internalhash |
| 277 | def test_fixed_hash(self): |
| 278 | # test a fixed seed for the randomized hash |
| 279 | # Note that all types share the same values: |
| 280 | h = self.get_expected_hash(1, 3) |
| 281 | self.assertEqual(self.get_hash(self.repr_, seed=42), h) |
| 282 | |
| 283 | @skip_unless_internalhash |
| 284 | def test_long_fixed_hash(self): |
nothing calls this directly
no test coverage detected