Drop base mysql unit test updates
This commit is contained in:
parent
9597ce8839
commit
68bdede60f
@ -263,19 +263,15 @@ class TestNeutronOVSUtils(CharmTestCase):
|
|||||||
@patch.object(nutils, 'git_src_dir')
|
@patch.object(nutils, 'git_src_dir')
|
||||||
@patch.object(nutils, 'service_restart')
|
@patch.object(nutils, 'service_restart')
|
||||||
@patch.object(nutils, 'render')
|
@patch.object(nutils, 'render')
|
||||||
@patch.object(nutils, 'git_pip_venv_dir')
|
|
||||||
@patch('os.path.join')
|
@patch('os.path.join')
|
||||||
@patch('os.path.exists')
|
@patch('os.path.exists')
|
||||||
@patch('os.symlink')
|
@patch('os.symlink')
|
||||||
@patch('shutil.copytree')
|
@patch('shutil.copytree')
|
||||||
@patch('shutil.rmtree')
|
@patch('shutil.rmtree')
|
||||||
@patch('subprocess.check_call')
|
def test_git_post_install(self, rmtree, copytree, symlink, exists, join,
|
||||||
def test_git_post_install(self, check_call, rmtree, copytree, symlink,
|
render, service_restart, git_src_dir):
|
||||||
exists, join, venv, render, service_restart,
|
|
||||||
git_src_dir):
|
|
||||||
projects_yaml = openstack_origin_git
|
projects_yaml = openstack_origin_git
|
||||||
join.return_value = 'joined-string'
|
join.return_value = 'joined-string'
|
||||||
venv.return_value = '/mnt/openstack-git/venv'
|
|
||||||
nutils.git_post_install(projects_yaml)
|
nutils.git_post_install(projects_yaml)
|
||||||
expected = [
|
expected = [
|
||||||
call('joined-string', '/etc/neutron'),
|
call('joined-string', '/etc/neutron'),
|
||||||
|
Loading…
Reference in New Issue
Block a user