diff options
author | 2022-07-11 05:00:40 +0400 | |
---|---|---|
committer | 2022-07-11 05:00:40 +0400 | |
commit | ee25921da752d51215598bcd3eb5fd5ab74a4a46 (patch) | |
tree | f2961a08df05b9bbea99ede10780859b87357652 | |
parent | Drop Migration Tests (diff) |
Remove Message Model Test
The message model was tested by instantiating and confirming it has a
string representation, but instantiating abstract models is undefined
behavior, and can break with future versions of django.
The behavior of the test is redundant anyway, since an abstract model
wouldn't exist in isolation, and the desired behavior is confirmed by
inheritors.
Signed-off-by: Hassan Abouelela <[email protected]>
-rw-r--r-- | pydis_site/apps/api/tests/test_models.py | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/pydis_site/apps/api/tests/test_models.py b/pydis_site/apps/api/tests/test_models.py index 0fad467c..c07d59cd 100644 --- a/pydis_site/apps/api/tests/test_models.py +++ b/pydis_site/apps/api/tests/test_models.py @@ -7,7 +7,6 @@ from pydis_site.apps.api.models import ( DeletedMessage, DocumentationLink, Infraction, - Message, MessageDeletionContext, Nomination, NominationEntry, @@ -116,17 +115,6 @@ class StringDunderMethodTests(SimpleTestCase): colour=0x5, permissions=0, position=10, ), - Message( - id=45, - author=User( - id=444, - name='bill', - discriminator=5, - ), - channel_id=666, - content="wooey", - embeds=[] - ), MessageDeletionContext( actor=User( id=5555, |