2013-07-01 20:22:27 +08:00
|
|
|
import unittest
|
|
|
|
|
2013-04-13 05:04:40 +08:00
|
|
|
from django.db.models import get_app
|
2013-07-02 03:49:11 +08:00
|
|
|
from django.test.utils import IgnoreAllDeprecationWarningsMixin
|
2013-04-13 05:04:40 +08:00
|
|
|
|
|
|
|
|
|
|
|
def suite():
|
|
|
|
testSuite = unittest.TestSuite()
|
|
|
|
testSuite.addTest(SuiteOverrideTest('test_suite_override'))
|
|
|
|
return testSuite
|
|
|
|
|
|
|
|
|
2013-07-02 03:49:11 +08:00
|
|
|
class SuiteOverrideTest(IgnoreAllDeprecationWarningsMixin, unittest.TestCase):
|
|
|
|
|
2013-04-13 05:04:40 +08:00
|
|
|
def test_suite_override(self):
|
|
|
|
"""
|
|
|
|
Validate that you can define a custom suite when running tests with
|
|
|
|
``django.test.simple.DjangoTestSuiteRunner`` (which builds up a test
|
|
|
|
suite using ``build_suite``).
|
|
|
|
"""
|
|
|
|
|
2013-06-14 22:02:30 +08:00
|
|
|
from django.test.simple import build_suite
|
2013-04-13 05:04:40 +08:00
|
|
|
app = get_app("test_suite_override")
|
|
|
|
suite = build_suite(app)
|
|
|
|
self.assertEqual(suite.countTestCases(), 1)
|
|
|
|
|
|
|
|
|
|
|
|
class SampleTests(unittest.TestCase):
|
|
|
|
"""These tests should not be discovered, due to the custom suite."""
|
|
|
|
def test_one(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def test_two(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def test_three(self):
|
|
|
|
pass
|