summaryrefslogtreecommitdiff
path: root/parts/django/tests/modeltests/test_client/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'parts/django/tests/modeltests/test_client/tests.py')
-rw-r--r--parts/django/tests/modeltests/test_client/tests.py20
1 files changed, 0 insertions, 20 deletions
diff --git a/parts/django/tests/modeltests/test_client/tests.py b/parts/django/tests/modeltests/test_client/tests.py
deleted file mode 100644
index 09f292e..0000000
--- a/parts/django/tests/modeltests/test_client/tests.py
+++ /dev/null
@@ -1,20 +0,0 @@
-# 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")