(organisation: Organisation)
| 390 | |
| 391 | @pytest.fixture() |
| 392 | def startup_subscription(organisation: Organisation) -> Subscription: |
| 393 | Subscription.objects.filter(organisation=organisation).update( |
| 394 | plan=STARTUP, subscription_id="subscription-id" |
| 395 | ) |
| 396 | organisation.refresh_from_db() |
| 397 | return organisation.subscription |
| 398 | |
| 399 | |
| 400 | @pytest.fixture() |
nothing calls this directly
no test coverage detected
searching dependent graphs…