1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00
community.general/test/integration/targets/nxos_command/tests/common/negative.yaml

30 lines
642 B
YAML
Raw Normal View History

---
- debug: msg="START connection={{ ansible_connection }}/negative.yaml"
- debug: msg="Using provider={{ connection.transport }}"
when: ansible_connection == "local"
- 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={{ ansible_connection }}/negative.yaml"