diff options
Diffstat (limited to '')
-rw-r--r-- | ctrack/organisations/tests/test_models.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/ctrack/organisations/tests/test_models.py b/ctrack/organisations/tests/test_models.py index 740b782..416a9fd 100644 --- a/ctrack/organisations/tests/test_models.py +++ b/ctrack/organisations/tests/test_models.py @@ -11,12 +11,6 @@ def test_organisation_get_absolute_url(org): assert org.get_absolute_url() == f"/organisations/{slug}/" -def test_create_organisation(): - Organisation(name="Big Bad OES Corporation").save() - # The organisation is saved in the db - assert Organisation.objects.get(name="Big Bad OES Corporation") - - def test_delete_organisation(org): orgs = Organisation.objects.all() assert org in orgs |