summaryrefslogtreecommitdiff
path: root/test/integration/targets/vyos_logging/tests/cli/net_logging.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/vyos_logging/tests/cli/net_logging.yaml')
-rw-r--r--test/integration/targets/vyos_logging/tests/cli/net_logging.yaml39
1 files changed, 0 insertions, 39 deletions
diff --git a/test/integration/targets/vyos_logging/tests/cli/net_logging.yaml b/test/integration/targets/vyos_logging/tests/cli/net_logging.yaml
deleted file mode 100644
index 7c62d72f23..0000000000
--- a/test/integration/targets/vyos_logging/tests/cli/net_logging.yaml
+++ /dev/null
@@ -1,39 +0,0 @@
----
-- debug: msg="START vyos 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: delete logging - setup
- net_logging:
- dest: file
- name: test
- facility: all
- level: notice
- state: absent
- register: result
-
-- name: file logging using platform agnostic module
- net_logging:
- dest: file
- name: test
- facility: all
- level: notice
- state: present
- register: result
-
-- assert:
- that:
- - 'result.changed == true'
- - '"set system syslog file test facility all level notice" in result.commands'
-
-- name: delete logging - teardown
- net_logging:
- dest: file
- name: test
- facility: all
- level: notice
- state: absent
- register: result
-
-- debug: msg="END vyos cli/net_logging.yaml on connection={{ ansible_connection }}"