bgneal@323: """
bgneal@323: This file demonstrates writing tests using the unittest module. These will pass
bgneal@323: when you run "manage.py test".
bgneal@323: 
bgneal@323: Replace this with more appropriate tests for your application.
bgneal@323: """
bgneal@323: 
bgneal@323: from django.test import TestCase
bgneal@323: 
bgneal@323: 
bgneal@323: class SimpleTest(TestCase):
bgneal@323:     def test_basic_addition(self):
bgneal@323:         """
bgneal@323:         Tests that 1 + 1 always equals 2.
bgneal@323:         """
bgneal@323:         self.assertEqual(1 + 1, 2)