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