Fixed #15154 -- removed doctests from the tests.py generated with createapp.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@15314 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Alex Gaynor 2011-01-26 03:22:16 +00:00
parent 1b961e8ee3
commit 9a317938ef
1 changed files with 5 additions and 12 deletions

View File

@ -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)