ansible/test/integration/targets/nxos_command/tests/common/invalid.yaml
Nathaniel Case a197125954
Nxos restore provider to nxapi tests (#41818)
* Quick and dirty sed to add provider

* Manually verify the rest of the cases

* Add missing provider
2018-07-02 09:43:51 -04:00

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 }}"