Files
caminus/local/tests.py
2012-03-05 17:57:49 -05:00

10 lines
307 B
Python

from django.test import TestCase
from django.contrib.auth.models import User
class AccountCreationTest(TestCase):
def testCreation(self):
user = User.objects.create_user('ValidUser', 'test@example.com')
self.assertIsNotNone(user.minecraftprofile.currencyaccount)
user.delete()