summaryrefslogtreecommitdiff
path: root/test/integration/targets/ios_config/tests/cli/toplevel.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/ios_config/tests/cli/toplevel.yaml')
-rw-r--r--test/integration/targets/ios_config/tests/cli/toplevel.yaml37
1 files changed, 37 insertions, 0 deletions
diff --git a/test/integration/targets/ios_config/tests/cli/toplevel.yaml b/test/integration/targets/ios_config/tests/cli/toplevel.yaml
new file mode 100644
index 0000000000..13e34f2b69
--- /dev/null
+++ b/test/integration/targets/ios_config/tests/cli/toplevel.yaml
@@ -0,0 +1,37 @@
+---
+- debug: msg="START cli/toplevel.yaml"
+
+- name: setup
+ ios_config:
+ lines: ['hostname {{ inventory_hostname }}']
+ provider: "{{ cli }}"
+ match: none
+
+- name: configure top level command
+ ios_config:
+ lines: ['hostname foo']
+ provider: "{{ cli }}"
+ register: result
+
+- assert:
+ that:
+ - "result.changed == true"
+ - "'hostname foo' in result.updates"
+
+- name: configure top level command idempotent check
+ ios_config:
+ lines: ['hostname foo']
+ provider: "{{ cli }}"
+ register: result
+
+- assert:
+ that:
+ - "result.changed == false"
+
+- name: teardown
+ ios_config:
+ lines: ['hostname {{ inventory_hostname }}']
+ provider: "{{ cli }}"
+ match: none
+
+- debug: msg="END cli/toplevel.yaml"