From 4fe03f5e17dfe9d4478a75dfada2282535c989fe Mon Sep 17 00:00:00 2001 From: Jason Gerard DeRose Date: Sun, 26 Oct 2008 23:53:44 -0600 Subject: Added API.load_plugins() place-holder, which cascades call to API.bootstrap() --- tests/test_ipalib/test_plugable.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'tests') diff --git a/tests/test_ipalib/test_plugable.py b/tests/test_ipalib/test_plugable.py index bdbadae59..ba98e752a 100644 --- a/tests/test_ipalib/test_plugable.py +++ b/tests/test_ipalib/test_plugable.py @@ -883,3 +883,16 @@ class test_API(ClassChecker): assert o.isdone('bootstrap') is True e = raises(StandardError, o.bootstrap) assert str(e) == 'API.bootstrap() already called' + + def test_load_plugins(self): + """ + Test the `ipalib.plugable.API.load_plugins` method. + """ + o = self.cls() + assert o.isdone('bootstrap') is False + assert o.isdone('load_plugins') is False + o.load_plugins(dry_run=True) + assert o.isdone('bootstrap') is True + assert o.isdone('load_plugins') is True + e = raises(StandardError, o.load_plugins) + assert str(e) == 'API.load_plugins() already called' -- cgit