ansible/test/integration/targets/nxos_command/tests/common/negative.yaml
David Newswanger 5df02dc288 nxos: merge nxapi/cli tests - config, bgp_neighbor, command, bgp_af (#28235)
* refactor nxos_bgp_af

* refactor nxos_bgp_neighbor

* refactor nxos_command

* refactor nxos_config

* removed accidental file
2017-08-21 20:45:25 +05:30

27 lines
529 B
YAML

---
- debug: msg="START {{ connection.transport }}/negative.yaml"
- name: run 11 commands
nxos_command:
commands:
- show version
- show version
- show version
- show version
- show version
- show version
- show version
- show version
- show version
- show version
- show version
provier: "{{ connection }}"
ignore_errors: yes
register: result
- assert:
that:
- result.failed
- debug: msg="END {{ connection.transport }}/negative.yaml"