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/iosxr_config/tests/cli/toplevel_before.yaml

41 lines
907 B
YAML

---
- debug: msg="START cli/toplevel_before.yaml on connection={{ ansible_connection }}"
- name: setup
iosxr_config:
commands:
- "no cdp"
- "hostname {{ inventory_hostname_short }}"
match: none
- name: configure top level command with before
iosxr_config:
commands: ['hostname foo']
before: ['cdp']
register: result
- assert:
that:
- "result.changed == true"
- "'hostname foo' in result.commands"
- "'cdp' in result.commands"
- name: configure top level command with before idempotent check
iosxr_config:
commands: ['hostname foo']
before: ['cdp']
register: result
- assert:
that:
- "result.changed == false"
- name: teardown
iosxr_config:
commands:
- "no cdp"
- "hostname {{ inventory_hostname_short }}"
match: none
- debug: msg="END cli/toplevel_before.yaml on connection={{ ansible_connection }}"