()
| 1282 | |
| 1283 | @pytest.fixture() |
| 1284 | def superuser(): # type: ignore[no-untyped-def] |
| 1285 | return FFAdminUser.objects.create_superuser( # type: ignore[no-untyped-call] |
| 1286 | email="superuser@example.com", |
| 1287 | password=FFAdminUser.objects.make_random_password(), |
| 1288 | ) |
| 1289 | |
| 1290 | |
| 1291 | @pytest.fixture() |
nothing calls this directly
no test coverage detected
searching dependent graphs…