| Total Complexity | 1 | 
| Total Lines | 9 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | # Licensed to the StackStorm, Inc ('StackStorm') under one or more | 
            ||
| 28 | class VMNicEditTestCase(VsphereBaseActionTestCase):  | 
            ||
| 29 | __test__ = True  | 
            ||
| 30 | action_cls = VMNicEdit  | 
            ||
| 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, network_name=None,  | 
            ||
| 36 | network_adapter=None, vsphere="default")  | 
            ||
| 37 |