diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2020-02-20 13:51:19 +0000 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2020-02-20 13:51:19 +0000 |
commit | 286c6bfc65636f57f29b4d4f9a45de5218c62cfe (patch) | |
tree | c6c7d6ea25664db5700c01d46646856595a41d2e /ctrack | |
parent | 9c1e4edd81d676c92503061c24f7e8660cc94482 (diff) |
Removed test for creating Organisation for now.
Diffstat (limited to 'ctrack')
-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 |