summaryrefslogtreecommitdiff
path: root/cliapp/pluginmgr_tests.py
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2012-02-28 17:46:06 +0000
committerLars Wirzenius <liw@liw.fi>2012-02-28 17:46:06 +0000
commit3f13f8c403a9a84ceb77457c5311ed6faa02515b (patch)
tree45e09bce378188bc351965ff507f25ce9f5688fa /cliapp/pluginmgr_tests.py
parent6f0c2fca8f53c32f20f2f8bfebe1b97bccf2fb0d (diff)
downloadcliapp-3f13f8c403a9a84ceb77457c5311ed6faa02515b.tar.gz
Improve how plugins are loaded and setup by the application
Diffstat (limited to 'cliapp/pluginmgr_tests.py')
-rw-r--r--cliapp/pluginmgr_tests.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/cliapp/pluginmgr_tests.py b/cliapp/pluginmgr_tests.py
index 8c49633..5537f8c 100644
--- a/cliapp/pluginmgr_tests.py
+++ b/cliapp/pluginmgr_tests.py
@@ -77,10 +77,6 @@ class PluginManagerTests(unittest.TestCase):
self.assertEqual(plugin.foo, 'fooarg')
self.assertEqual(plugin.bar, 'bararg')
- def test_calls_setup_method_at_load_time(self):
- plugin = self.pm['Hello']
- self.assert_(plugin.setup_called)
-
def test_raises_keyerror_for_unknown_plugin(self):
self.assertRaises(KeyError, self.pm.__getitem__, 'Hithere')