ansible/test/integration/targets/nxos_banner/tests/nxapi/basic-no-motd.yaml
Trishna Guha 8a6d699198
Enable nxapi nxos_banner test (#35033)
Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
2018-01-18 11:50:15 +05:30

25 lines
489 B
YAML

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