mirror of
https://github.com/django/django.git
synced 2024-12-01 15:42:04 +01:00
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:
parent
1b961e8ee3
commit
9a317938ef
@ -1,23 +1,16 @@
|
|||||||
"""
|
"""
|
||||||
This file demonstrates two different styles of tests (one doctest and one
|
This file demonstrates writing tests using the unittest module. These will pass
|
||||||
unittest). These will both pass when you run "manage.py test".
|
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
|
from django.test import TestCase
|
||||||
|
|
||||||
|
|
||||||
class SimpleTest(TestCase):
|
class SimpleTest(TestCase):
|
||||||
def test_basic_addition(self):
|
def test_basic_addition(self):
|
||||||
"""
|
"""
|
||||||
Tests that 1 + 1 always equals 2.
|
Tests that 1 + 1 always equals 2.
|
||||||
"""
|
"""
|
||||||
self.failUnlessEqual(1 + 1, 2)
|
self.assertEqual(1 + 1, 2)
|
||||||
|
|
||||||
__test__ = {"doctest": """
|
|
||||||
Another way to test that 1 + 1 is equal to 2.
|
|
||||||
|
|
||||||
>>> 1 + 1 == 2
|
|
||||||
True
|
|
||||||
"""}
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user