diff --git a/django/conf/app_template/tests.py b/django/conf/app_template/tests.py index 2247054b35..501deb776c 100644 --- a/django/conf/app_template/tests.py +++ b/django/conf/app_template/tests.py @@ -1,23 +1,16 @@ """ -This file demonstrates two different styles of tests (one doctest and one -unittest). These will both pass when you run "manage.py test". +This file demonstrates writing tests using the unittest module. These will pass +when you run "manage.py test". -Replace these with more appropriate tests for your application. +Replace this with more appropriate tests for your application. """ from django.test import TestCase + class SimpleTest(TestCase): def test_basic_addition(self): """ Tests that 1 + 1 always equals 2. """ - self.failUnlessEqual(1 + 1, 2) - -__test__ = {"doctest": """ -Another way to test that 1 + 1 is equal to 2. - ->>> 1 + 1 == 2 -True -"""} - + self.assertEqual(1 + 1, 2)