summaryrefslogtreecommitdiff
path: root/app/accounts/tests/test_models.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/accounts/tests/test_models.py')
-rw-r--r--app/accounts/tests/test_models.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/app/accounts/tests/test_models.py b/app/accounts/tests/test_models.py
new file mode 100644
index 0000000..f9b33f6
--- /dev/null
+++ b/app/accounts/tests/test_models.py
@@ -0,0 +1,13 @@
+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')
+ user.save()
+ profile = UserProfile.objects.get(user=user)
+ self.assertEqual(str(profile), str(user.username))