mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
372 B
YAML
18 lines
372 B
YAML
8 years ago
|
---
|
||
|
- debug: msg="START cli/badtransport.yaml"
|
||
|
|
||
|
- name: Sending transport other than cli should fail
|
||
|
nxos_nxapi:
|
||
|
enable_http: no
|
||
|
enable_sandbox: no
|
||
|
https_port: 9443
|
||
|
provider: "{{ nxapi }}"
|
||
|
register: result
|
||
|
ignore_errors: yes
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- result.failed and result.msg | search('transport')
|
||
|
|
||
|
- debug: msg="END cli/badtransport.yaml"
|