a197125954
* Quick and dirty sed to add provider * Manually verify the rest of the cases * Add missing provider
28 lines
606 B
YAML
28 lines
606 B
YAML
---
|
|
- debug: msg="START common/invalid.yaml on connection={{ ansible_connection }}"
|
|
|
|
- name: run invalid command
|
|
nxos_command:
|
|
commands: ['show foo']
|
|
provider: "{{ connection }}"
|
|
register: result
|
|
ignore_errors: yes
|
|
|
|
- assert:
|
|
that:
|
|
- "result.failed == true"
|
|
|
|
- name: run commands that include invalid command
|
|
nxos_command:
|
|
commands:
|
|
- show version
|
|
- show foo
|
|
provider: "{{ connection }}"
|
|
register: result
|
|
ignore_errors: yes
|
|
|
|
- assert:
|
|
that:
|
|
- "result.failed == true"
|
|
|
|
- debug: msg="END common/invalid.yaml on connection={{ ansible_connection }}"
|