Merge "Remove duplicate test test_boot_multiple"

This commit is contained in:
Jenkins 2014-05-12 16:15:24 +00:00 committed by Gerrit Code Review
commit 522c65f148
2 changed files with 0 additions and 28 deletions

View File

@ -129,20 +129,6 @@ class ShellTest(utils.TestCase):
}},
)
def test_boot_multiple(self):
self.run_command('boot --flavor 1 --image 1'
' --num-instances 3 some-server')
self.assert_called_anytime(
'POST', '/servers',
{'server': {
'flavorRef': '1',
'name': 'some-server',
'imageRef': '1',
'min_count': 1,
'max_count': 3,
}},
)
def test_boot_image_with(self):
self.run_command("boot --flavor 1"
" --image-with test_key=test_value some-server")

View File

@ -186,20 +186,6 @@ class ShellTest(utils.TestCase):
}},
)
def test_boot_multiple(self):
self.run_command('boot --flavor 1 --image 1'
' --num-instances 3 some-server')
self.assert_called_anytime(
'POST', '/servers',
{'server': {
'flavor_ref': '1',
'name': 'some-server',
'image_ref': '1',
'os-multiple-create:min_count': 1,
'os-multiple-create:max_count': 3,
}},
)
def test_boot_image_with(self):
self.run_command("boot --flavor 1"
" --image-with test_key=test_value some-server")