summaryrefslogtreecommitdiff
path: root/tests/modeltests/test_client/tests.py
blob: 6ad51ac9a0d446e36c197c46ae459c7a51f1750e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Validate that you can override the default test suite

from django.utils 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")