You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/integration/targets/junos_config/tests/netconf/bad_action.yaml

17 lines
317 B
YAML

---
- debug: msg="START netconf/bad_action.yaml"
- name: configure single bad_action command
junos_config:
lines:
- 'invalid system foo'
provider: "{{ netconf }}"
register: result
ignore_errors: yes
- assert:
that:
- "result.failed == true"
- debug: msg="END netconf/bad_action.yaml"