From bb9691099b7b025fc491279314d8803f4fa3b571 Mon Sep 17 00:00:00 2001 From: Jason Gerard DeRose Date: Mon, 27 Oct 2008 15:36:41 -0600 Subject: API.bootstrap() now calls Env._finalize_core(); updated unit tests --- tests/test_ipalib/test_cli.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tests/test_ipalib/test_cli.py') diff --git a/tests/test_ipalib/test_cli.py b/tests/test_ipalib/test_cli.py index 293371b7..39959270 100644 --- a/tests/test_ipalib/test_cli.py +++ b/tests/test_ipalib/test_cli.py @@ -149,9 +149,11 @@ class test_CLI(ClassChecker): """ (o, api, home) = self.new() keys = tuple(api.env) + assert api.isdone('bootstrap') is False assert o.isdone('parse_globals') is False assert o.isdone('bootstrap') is False o.bootstrap() + assert api.isdone('bootstrap') is True assert o.isdone('parse_globals') is True assert o.isdone('bootstrap') is True e = raises(StandardError, o.bootstrap) -- cgit