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/cnos_banner/tests/cli/basic-login.yaml

44 lines
711 B
YAML

---
- name: setup - remove login
cnos_banner:
banner: login
state: absent
provider: "{{ cli }}"
- name: Set login
cnos_banner:
banner: login
text: |
this is my login banner
that has a multiline
string
state: present
provider: "{{ cli }}"
register: result
- debug:
msg: "{{ result }}"
- assert:
that:
- "result.changed == true"
- name: Set login again (idempotent)
cnos_banner:
banner: login
text: |
this is my login banner
that has a multiline
string
state: present
provider: "{{ cli }}"
register: result
- assert:
that:
- "result.changed == false"
- "result.commands | length == 0"