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 GetVMDetailsTestCase(VsphereBaseActionTestCase): |
||
29 | __test__ = True |
||
30 | action_cls = GetVMDetails |
||
31 | |||
32 | def test_run_blank_input(self): |
||
33 | action = self.get_action_instance(self.new_config) |
||
34 | |||
35 | self.assertRaises(ValueError, action.run, vm_ids=None, |
||
36 | vm_names=None, vsphere="default") |
||
37 |