mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-23 05:10:22 -07:00
aci_domain: Add missing integration tests (#36051)
This commit is contained in:
parent
39d9496282
commit
30adc2f124
8 changed files with 809 additions and 1 deletions
|
@ -123,6 +123,7 @@ EXAMPLES = r'''
|
|||
host: apic
|
||||
username: admin
|
||||
password: SomeSecretPassword
|
||||
domain_type: phys
|
||||
state: query
|
||||
'''
|
||||
|
||||
|
@ -321,7 +322,7 @@ def main():
|
|||
elif domain_type == 'vmm':
|
||||
domain_class = 'vmmDomP'
|
||||
domain_mo = 'uni/vmmp-{0}/dom-{1}'.format(VM_PROVIDER_MAPPING[vm_provider], domain)
|
||||
domain_rn = 'dom-{0}'.format(domain)
|
||||
domain_rn = 'vmmp-{0}/dom-{1}'.format(VM_PROVIDER_MAPPING[vm_provider], domain)
|
||||
|
||||
aci = ACIModule(module)
|
||||
aci.construct_url(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue