aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/organisations/tests
diff options
context:
space:
mode:
Diffstat (limited to 'ctrack/organisations/tests')
-rw-r--r--ctrack/organisations/tests/test_models.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/ctrack/organisations/tests/test_models.py b/ctrack/organisations/tests/test_models.py
index 6f79cb4..c6314af 100644
--- a/ctrack/organisations/tests/test_models.py
+++ b/ctrack/organisations/tests/test_models.py
@@ -11,14 +11,6 @@ def test_organisation_get_absolute_url(org):
assert org.get_absolute_url() == f"/organisations/{slug}/"
-def test_delete_organisation(org_with_people):
- orgs = Organisation.objects.all()
- assert org_with_people in orgs
- Organisation.delete(org_with_people)
- # Assert that the record has been deleted
- assert Organisation.objects.count() == 0
-
-
def test_update_organisation(org_with_people):
# Change the name of the organisation
org_with_people.name = "Tonkers Ltd"