summaryrefslogtreecommitdiff
path: root/mock/tests/testsupport.py
diff options
context:
space:
mode:
Diffstat (limited to 'mock/tests/testsupport.py')
-rw-r--r--mock/tests/testsupport.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/mock/tests/testsupport.py b/mock/tests/testsupport.py
deleted file mode 100644
index 4882572..0000000
--- a/mock/tests/testsupport.py
+++ /dev/null
@@ -1,14 +0,0 @@
-# Tests to make sure helpers we backport are actually working!
-from unittest import TestCase
-
-from .support import uncache
-
-
-class TestUncache(TestCase):
-
- def test_cant_uncache_sys(self):
- with self.assertRaises(ValueError):
- with uncache('sys'): pass
-
- def test_uncache_non_existent(self):
- with uncache('mock.tests.support.bad'): pass