(tournament_model, tournament_model_unsaved)
| 210 | |
| 211 | @pytest.mark.asyncio |
| 212 | async def test_hash(tournament_model, tournament_model_unsaved): |
| 213 | assert hash(tournament_model) == tournament_model.id |
| 214 | with pytest.raises(TypeError): |
| 215 | hash(tournament_model_unsaved) |
| 216 | |
| 217 | |
| 218 | @pytest.mark.asyncio |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…