(self, params)
| 77 | # Mock the AnsibleModule for testing |
| 78 | class MockModule: |
| 79 | def __init__(self, params): |
| 80 | self.params = params |
| 81 | self.result = {} |
| 82 | |
| 83 | def fail_json(self, **kwargs): |
| 84 | raise Exception(f"Module failed: {kwargs}") |
nothing calls this directly
no outgoing calls
no test coverage detected