def test_create_user(self):
        user = User.objects.create_user("xyb@test.com", "password")

        self.assertTrue(isinstance(user, User))