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/nxos_banner/tests/cli/basic-no-motd.yaml

35 lines
653 B
YAML

---
- debug: msg="START cli/nxos_banner no-motd test"
- name: Setup
nxos_banner:
banner: motd
text: |
Junk motd banner
over multiple lines
state: present
provider: "{{ cli }}"
- name: remove motd
nxos_banner: &rm-motd
banner: motd
state: absent
provider: "{{ cli }}"
register: result
- assert:
that:
- "result.changed == true"
- "'no banner motd' in result.commands"
- name: remove motd (idempotent)
nxos_banner: *rm-motd
register: result
- assert:
that:
- "result.changed == false"
- "result.commands | length == 0"
- debug: msg="END cli/nxos_banner no-motd test"