summaryrefslogtreecommitdiffstats
path: root/tests/util.py
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2009-01-22 14:00:37 -0700
committerRob Crittenden <rcritten@redhat.com>2009-02-03 15:29:00 -0500
commit9f48612a56b6e760aa06a9af2071f1b50f413f27 (patch)
tree3497a7a1ac14d73f785d28fbb2a5e542c03e1534 /tests/util.py
parent46c10d4608508de01a65d6e6076104d88c63b253 (diff)
downloadfreeipa-9f48612a56b6e760aa06a9af2071f1b50f413f27.tar.gz
freeipa-9f48612a56b6e760aa06a9af2071f1b50f413f27.tar.xz
freeipa-9f48612a56b6e760aa06a9af2071f1b50f413f27.zip
Sundry work getting ready to switch to new XML-RPC client/server code
Diffstat (limited to 'tests/util.py')
-rw-r--r--tests/util.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/util.py b/tests/util.py
index f5899dfab..631d4a05c 100644
--- a/tests/util.py
+++ b/tests/util.py
@@ -295,6 +295,13 @@ class PluginTester(object):
o = api[namespace][self.plugin.__name__]
return (o, api, home)
+ def tearDown(self):
+ """
+ nose tear-down fixture.
+ """
+ for name in context.__dict__.keys():
+ delattr(context, name)
+
class dummy_ugettext(object):
__called = False