unit_test fix

This commit is contained in:
Junaid Ali 2016-03-24 18:13:46 +05:00
parent ed6f3e70c9
commit 290148b80c
1 changed files with 0 additions and 14 deletions

View File

@ -54,20 +54,6 @@ class NeutronPGHooksTests(CharmTestCase):
])
self.ensure_files.assert_called_with()
def test_config_changed_hook(self):
_pkgs = ['plumgrid-pythonlib']
self.determine_packages.return_value = [_pkgs]
self._call_hook('config-changed')
self.stop.assert_called_with()
self.configure_sources.assert_called_with()
self.apt_update.assert_called_with()
self.apt_install.assert_has_calls([
call(_pkgs, fatal=True,
options=['--force-yes']),
])
self.ensure_files.assert_called_with()
self.CONFIGS.write_all.assert_called_with()
def test_neutron_api_joined(self):
self._call_hook('neutron-plugin-api-relation-joined')
self.ensure_files.assert_called_with()