From 4df10116ed3cb65ad82a27c1643807d0a417d410 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Mon, 19 Jan 2004 20:23:03 +0000 Subject: [PATCH] Added Config to the default list of plugins loaded. --- test/testsupport.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/testsupport.py b/test/testsupport.py index 45bcb314c..fc060ac17 100644 --- a/test/testsupport.py +++ b/test/testsupport.py @@ -134,13 +134,15 @@ class PluginTestCase(unittest.TestCase): pass #OwnerModule = Owner.loadPluginModule('Owner') MiscModule = Owner.loadPluginModule('Misc') + ConfigModule = Owner.loadPluginModule('Config') _ = Owner.loadPluginClass(self.irc, Owner) _ = Owner.loadPluginClass(self.irc, MiscModule) + _ = Owner.loadPluginClass(self.irc, ConfigModule) if isinstance(self.plugins, str): self.plugins = [self.plugins] else: for name in self.plugins: - if name not in ('Owner', 'Misc'): + if name not in ('Owner', 'Misc', 'Config'): try: module = Owner.loadPluginModule(name) except Owner.Deprecated, e: