summaryrefslogtreecommitdiff
path: root/test/integration/targets/nxos_config/tests/nxapi/defaults.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/nxos_config/tests/nxapi/defaults.yaml')
-rw-r--r--test/integration/targets/nxos_config/tests/nxapi/defaults.yaml42
1 files changed, 42 insertions, 0 deletions
diff --git a/test/integration/targets/nxos_config/tests/nxapi/defaults.yaml b/test/integration/targets/nxos_config/tests/nxapi/defaults.yaml
new file mode 100644
index 0000000000..39c53846b3
--- /dev/null
+++ b/test/integration/targets/nxos_config/tests/nxapi/defaults.yaml
@@ -0,0 +1,42 @@
+---
+- debug: msg="START nxapi/defaults.yaml"
+
+- name: setup
+ nxos_config:
+ commands:
+ - no description
+ - shutdown
+ parents:
+ - interface Ethernet2/5
+ match: none
+ provider: "{{ nxapi }}"
+
+- name: configure device with defaults included
+ nxos_config:
+ src: defaults/config.j2
+ defaults: yes
+ provider: "{{ nxapi }}"
+ register: result
+
+- debug: var=result
+
+- assert:
+ that:
+ - "result.changed == true"
+ - "result.updates is not defined"
+
+- name: check device with defaults included
+ nxos_config:
+ src: defaults/config.j2
+ defaults: yes
+ provider: "{{ nxapi }}"
+ register: result
+
+- debug: var=result
+
+- assert:
+ that:
+ - "result.changed == false"
+ - "result.updates is not defined"
+
+- debug: msg="END nxapi/defaults.yaml"