mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 06:12:51 +00:00
Enable nxapi nxos_banner test (#35033)
Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
---
|
||||
- debug: msg="START nxapi/nxos_banner exec test"
|
||||
|
||||
- block:
|
||||
- name: setup - remove exec
|
||||
nxos_banner: &remove
|
||||
banner: exec
|
||||
state: absent
|
||||
provider: "{{ nxapi }}"
|
||||
|
||||
- name: Set exec
|
||||
nxos_banner: &exec
|
||||
banner: exec
|
||||
text: |
|
||||
this is my exec banner
|
||||
that has a multiline
|
||||
string
|
||||
state: present
|
||||
provider: "{{ nxapi }}"
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "result.changed == true"
|
||||
- "'banner exec @\nthis is my exec banner\nthat has a multiline\nstring\n@' in result.commands"
|
||||
|
||||
- name: teardown - remove exec
|
||||
nxos_banner: *remove
|
||||
|
||||
when: platform is match("N7K")
|
||||
|
||||
- debug: msg="END nxapi/nxos_banner exec test"
|
||||
Reference in New Issue
Block a user