summaryrefslogtreecommitdiff
path: root/test/integration/targets/ios_logging/tests/cli/net_logging.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/ios_logging/tests/cli/net_logging.yaml')
-rw-r--r--test/integration/targets/ios_logging/tests/cli/net_logging.yaml36
1 files changed, 0 insertions, 36 deletions
diff --git a/test/integration/targets/ios_logging/tests/cli/net_logging.yaml b/test/integration/targets/ios_logging/tests/cli/net_logging.yaml
deleted file mode 100644
index 154336bdb4..0000000000
--- a/test/integration/targets/ios_logging/tests/cli/net_logging.yaml
+++ /dev/null
@@ -1,36 +0,0 @@
----
-- debug: msg="START ios cli/net_logging.yaml on connection={{ ansible_connection }}"
-
-# Add minimal testcase to check args are passed correctly to
-# implementation module and module run is successful.
-
-- name: Remove host logging - setup
- net_logging:
- dest: host
- name: 172.16.0.1
- state: absent
- provider: "{{ cli }}"
-
-- name: Set up host logging using platform agnostic module
- net_logging:
- dest: host
- name: 172.16.0.1
- facility: local7
- state: present
- provider: "{{ cli }}"
- register: result
-
-- assert:
- that:
- - 'result.changed == true'
- - '"logging host 172.16.0.1" in result.commands'
- - '"logging facility local7" in result.commands'
-
-- name: Remove host logging - teardown
- net_logging:
- dest: host
- name: 172.16.0.1
- state: absent
- provider: "{{ cli }}"
-
-- debug: msg="END ios cli/net_logging.yaml on connection={{ ansible_connection }}"