mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-13 23:27:16 +00:00
12 lines
412 B
Python
12 lines
412 B
Python
from django.contrib.auth.models import User
|
|
from django.test import TestCase
|
|
|
|
from bookmarks.models import UserProfile
|
|
|
|
|
|
class UserProfileTestCase(TestCase):
|
|
|
|
def test_create_user_should_init_profile(self):
|
|
user = User.objects.create_user('testuser', 'test@example.com', 'password123')
|
|
profile = UserProfile.objects.all().filter(user_id=user.id).first()
|
|
self.assertIsNotNone(profile)
|