mirror of
https://github.com/django/django.git
synced 2025-08-04 19:08:28 +00:00
Fixed #3782 -- Added support for the suite() method recommended by the Python unittest docs. Thanks for the suggestion, rene.puls@repro-mayr.de.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5729 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
73bec372ee
commit
9922a04bb6
3 changed files with 57 additions and 21 deletions
20
tests/modeltests/test_client/tests.py
Normal file
20
tests/modeltests/test_client/tests.py
Normal file
|
@ -0,0 +1,20 @@
|
|||
# Validate that you can override the default test suite
|
||||
|
||||
import unittest
|
||||
|
||||
def suite():
|
||||
"""
|
||||
Define a suite that deliberately ignores a test defined in
|
||||
this module.
|
||||
"""
|
||||
|
||||
testSuite = unittest.TestSuite()
|
||||
testSuite.addTest(SampleTests('testGoodStuff'))
|
||||
return testSuite
|
||||
|
||||
class SampleTests(unittest.TestCase):
|
||||
def testGoodStuff(self):
|
||||
pass
|
||||
|
||||
def testBadStuff(self):
|
||||
self.fail("This test shouldn't run")
|
Loading…
Add table
Add a link
Reference in a new issue