dfd1b29777
* add module to create aci VMM credential objects add initial remove and add integration tests for VMM credential objects * update 'credential' var name to 'name' * move vmware tests to domain type specific file * move vmware tests to domain type specific file add include task in main file to reference domain type specific tests * update task names add test to remove credential prior to first credential add add tests for querying individual credentials add tests for query all credentials add additional tests for removing credentials * update version added to 2.9 remove invalid module references from 'seealso' section * fix list reference in query all assertions * add reference to VM_PROVIDER_MAPPING keys for vm_provider arg
12 lines
No EOL
534 B
YAML
12 lines
No EOL
534 B
YAML
# Test code for the ACI modules
|
|
# Copyright: (c) 2018, Dag Wieers (@dagwieers) <dag@wieers.com>
|
|
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
- name: Test that we have an ACI APIC host, ACI username and ACI password
|
|
fail:
|
|
msg: 'Please define the following variables: aci_hostname, aci_username and aci_password.'
|
|
when: aci_hostname is not defined or aci_username is not defined or aci_password is not defined
|
|
|
|
- include_tasks: vmware.yml
|
|
when: vmware is not defined or vmware |