1 ##############################################################################
2 # Copyright (c) 2017 Huawei Technologies Co.,Ltd and others.
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
12 from yardstick.benchmark.scenarios.lib.delete_flavor import DeleteFlavor
15 class DeleteFlavorTestCase(unittest.TestCase):
17 @mock.patch('yardstick.common.openstack_utils.delete_flavor')
18 @mock.patch('yardstick.common.openstack_utils.get_nova_client')
19 def test_delete_flavor(self, mock_get_nova_client, mock_delete_flavor):
21 'flavor_name': 'yardstick_test_flavor'
23 args = {"options": options}
24 obj = DeleteFlavor(args, {})
26 self.assertTrue(mock_get_nova_client.called)
27 self.assertTrue(mock_delete_flavor.called)
34 if __name__ == '__main__':