summaryrefslogtreecommitdiff
path: root/test/integration/targets/ios_system/tests/cli/set_hostname.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/ios_system/tests/cli/set_hostname.yaml')
-rw-r--r--test/integration/targets/ios_system/tests/cli/set_hostname.yaml36
1 files changed, 0 insertions, 36 deletions
diff --git a/test/integration/targets/ios_system/tests/cli/set_hostname.yaml b/test/integration/targets/ios_system/tests/cli/set_hostname.yaml
deleted file mode 100644
index 1b39764c6e..0000000000
--- a/test/integration/targets/ios_system/tests/cli/set_hostname.yaml
+++ /dev/null
@@ -1,36 +0,0 @@
----
-- debug: msg="START cli/set_hostname.yaml on connection={{ ansible_connection }}"
-
-- name: setup
- ios_config:
- lines: hostname switch
- match: none
- provider: "{{ cli }}"
-
-- name: configure hostname
- ios_system:
- hostname: foo
- provider: "{{ cli }}"
- register: result
-
-- assert:
- that:
- - "result.changed == true"
-
-- name: verify hostname
- ios_system:
- hostname: foo
- provider: "{{ cli }}"
- register: result
-
-- assert:
- that:
- - "result.changed == false"
-
-- name: teardown
- ios_config:
- lines: "hostname {{ inventory_hostname }}"
- match: none
- provider: "{{ cli }}"
-
-- debug: msg="END cli/set_hostname.yaml on connection={{ ansible_connection }}"