18 lines
372 B
YAML
18 lines
372 B
YAML
|
---
|
||
|
- 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"
|