diff options
author | luxagraf <sng@luxagraf.net> | 2018-11-02 15:01:05 -0600 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2018-11-02 15:01:05 -0600 |
commit | 68abc78a9a543697d8f176775a052c1d70e371a4 (patch) | |
tree | 8d440951fa1786d2ac62a3836079a979bb812fae /apps/accounts/tests/test_models.py |
added some basic user models and tests
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)) |