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