From 286c6bfc65636f57f29b4d4f9a45de5218c62cfe Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Thu, 20 Feb 2020 13:51:19 +0000 Subject: Removed test for creating Organisation for now. --- ctrack/organisations/tests/test_models.py | 6 ------ 1 file changed, 6 deletions(-) (limited to 'ctrack/organisations') 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 -- cgit v1.2.3