diff options
Diffstat (limited to 'apps/accounts/tests/test_models.py')
-rw-r--r-- | apps/accounts/tests/test_models.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/apps/accounts/tests/test_models.py b/apps/accounts/tests/test_models.py new file mode 100644 index 0000000..48cc976 --- /dev/null +++ b/apps/accounts/tests/test_models.py @@ -0,0 +1,12 @@ +from django.test import TestCase +from mixer.backend.django import mixer + +from accounts.models import User, UserProfile + + +class UserProfileModelTest(TestCase): + + def test_string_representation(self): + user = mixer.blend(User, username='test') + profile = UserProfile(user=user) + self.assertEqual(str(profile), str(user.username)) |