summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
Diffstat (limited to 'ext')
-rw-r--r--ext/testlib/fixture.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/ext/testlib/fixture.py b/ext/testlib/fixture.py
index ffff54cd8..be8924474 100644
--- a/ext/testlib/fixture.py
+++ b/ext/testlib/fixture.py
@@ -98,6 +98,13 @@ class Fixture(object):
def copy(self):
return copy.deepcopy(self)
+ def skip_cleanup(self):
+ '''
+ If this method is called, then we should make sure that nothing is
+ done when the teardown() function is called.
+ '''
+ pass
+
def globalfixture(fixture):
'''