Total Complexity | 1 |
Total Lines | 9 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | # Licensed to the StackStorm, Inc ('StackStorm') under one or more |
||
28 | class VMCPUMemEditTestCase(VsphereBaseActionTestCase): |
||
29 | __test__ = True |
||
30 | action_cls = VMCPUMemEdit |
||
31 | |||
32 | def test_run_blank_identifier_input(self): |
||
33 | action = self.get_action_instance(self.new_config) |
||
34 | self.assertRaises(ValueError, action.run, vm_id=None, |
||
35 | vm_name=None, cpu_edit=1, mem_edit=1, |
||
36 | vsphere="default") |
||
37 |