from django.test import TestCase from .models import Profile class ProfileModelTest(TestCase): def test_create_profile(self): user = Profile.objects.create_user( username="testuser", email="test@example.com", password="testpass123" ) self.assertEqual(user.email, "test@example.com") self.assertTrue(user.check_password("testpass123"))