d7f4f886f8
We do not support testing under ansible_connection=local Signed-off-by: Paul Belanger <pabelanger@redhat.com>
28 lines
642 B
YAML
28 lines
642 B
YAML
---
|
|
- debug:
|
|
msg: "START cli/cli_command.yaml on connection={{ ansible_connection }}"
|
|
|
|
- block:
|
|
- name: get output for single command
|
|
cli_command:
|
|
command: show version
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
- "result.stdout is defined"
|
|
|
|
- name: send invalid command
|
|
cli_command:
|
|
command: 'show foo'
|
|
register: result
|
|
ignore_errors: yes
|
|
|
|
- assert:
|
|
that:
|
|
- "result.failed == true"
|
|
- "result.msg is defined"
|
|
when: "ansible_connection == 'network_cli'"
|
|
|
|
- debug: msg="END cli/cli_command.yaml on connection={{ ansible_connection }}"
|