ansible/test/integration/targets/iosxr_command/tests/cli/invalid.yaml
Kedar Kekan 684e953b50 * adds commit replace with config file for iosxr (#35564)
* * adds commit replace with config file for iosxr
* fixes dci failure in iosxr_logging

* * review comment changes
2018-02-01 14:15:32 +00:00

26 lines
614 B
YAML

---
- debug: msg="START cli/invalid.yaml on connection={{ ansible_connection }}"
- name: run invalid command
iosxr_command:
commands: {command: 'show foo', prompt: 'fooprompt', answer: 'yes'}
register: result
ignore_errors: yes
- assert:
that:
- "result.failed"
- name: run commands that include invalid command
iosxr_command:
commands:
- show version
- {command: 'show foo', prompt: 'fooprompt', answer: 'yes'}
register: result
ignore_errors: yes
- assert:
that:
- "result.failed"
- debug: msg="END cli/invalid.yaml on connection={{ ansible_connection }}"