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