Test namespace generation
All checks were successful
Tests / test (push) Successful in 23s

This commit is contained in:
Tobias Kunze 2025-04-09 16:06:45 +02:00
parent 973988c91e
commit e90a60e882
2 changed files with 3 additions and 6 deletions

View file

@ -15,16 +15,12 @@ def origin():
@pytest.fixture
def organization(origin):
return Organization.objects.create(
name="Test Org", namespace="test-org", origin=origin
)
return Organization.objects.create(name="Test Org", origin=origin)
@pytest.fixture
def other_organization(origin):
return Organization.objects.create(
name="Test Org Alternate", namespace="test-org-alternate", origin=origin
)
return Organization.objects.create(name="Test Org Alternate", origin=origin)
@pytest.fixture