diff options
author | 2018-10-21 20:22:11 +0000 | |
---|---|---|
committer | 2018-10-21 20:22:11 +0000 | |
commit | 0232d1a8b4a00c3e03153f0820810397effc9285 (patch) | |
tree | ed6ba70cc3801be8cc513883a532a415f4639e3a /api/tests/test_models.py | |
parent | Drop extra whitespace. (diff) | |
parent | fixed linting issues (diff) |
Merge branch 'snake_idioms' into 'django'
Snake idioms API
See merge request python-discord/projects/site!44
Diffstat (limited to 'api/tests/test_models.py')
-rw-r--r-- | api/tests/test_models.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/api/tests/test_models.py b/api/tests/test_models.py index 55009bf6..af2ef5d5 100644 --- a/api/tests/test_models.py +++ b/api/tests/test_models.py @@ -2,7 +2,9 @@ from django.test import SimpleTestCase from ..models import ( DocumentationLink, Member, ModelReprMixin, - OffTopicChannelName, Role, SnakeFact, SnakeName, Tag + OffTopicChannelName, Role, + SnakeFact, SnakeIdiom, + SnakeName, Tag ) @@ -28,6 +30,7 @@ class StringDunderMethodTests(SimpleTestCase): ), OffTopicChannelName(name='bob-the-builders-playground'), SnakeFact(fact='snakes are cute'), + SnakeIdiom(idiom='snake snacks'), SnakeName(name='python', scientific='3'), Role( id=5, name='test role', |