e0cc7b3415
* Docs Networking tests * Copy networking tests from test-network-modules * Networking transport settings - group_vars * Network playbooks * Debug should be off by default * Update nxos.yaml * Remove items from top level * Use dependencies, not pre-tasks * Remove trailing blank lines * Remove backup files * newlines
31 lines
618 B
YAML
31 lines
618 B
YAML
---
|
|
- debug: msg="START netconf_xml/invalid.yaml"
|
|
|
|
- name: run invalid command
|
|
junos_command:
|
|
commands: ['show foo']
|
|
provider: "{{ netconf }}"
|
|
register: result
|
|
ignore_errors: yes
|
|
- debug: var=result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.failed == true"
|
|
- "result.msg is defined"
|
|
|
|
- name: run commands that include invalid command
|
|
junos_command:
|
|
commands:
|
|
- show version
|
|
- show foo
|
|
provider: "{{ netconf }}"
|
|
register: result
|
|
ignore_errors: yes
|
|
|
|
- assert:
|
|
that:
|
|
- "result.failed == true"
|
|
- "result.msg is defined"
|
|
|
|
- debug: msg="END netconf_xml/invalid.yaml"
|