--- - name: setup - remove motd nxos_banner: banner: motd state: absent provider: "{{ connection }}" - name: Set motd nxos_banner: &motd banner: motd text: | this is my motd banner that has a multiline string state: present provider: "{{ connection }}" register: result - assert: that: - "result.changed == true" - "'banner motd @\nthis is my motd banner\nthat has a multiline\nstring\n@' in result.commands" - name: Set motd again (idempotent) nxos_banner: *motd register: result - assert: that: - "result.changed == false" - "result.commands | length == 0" # FIXME add in tests for everything defined in docs # FIXME Test state:absent + test: # FIXME Without powers ensure "privileged mode required"