summaryrefslogtreecommitdiff
path: root/tests/integration/targets/vyos_system
diff options
context:
space:
mode:
authorKate Case <kcase@redhat.com>2022-10-12 14:06:05 -0400
committerGitHub <noreply@github.com>2022-10-12 14:06:05 -0400
commit7712afd90de9a2b4f6d91f3fbea77de20d6ed40e (patch)
treeb4e4e5c80b881f9d615898977784680ffbad8de4 /tests/integration/targets/vyos_system
parentf985cc431f9dbbf5c23ffc32624ea1eb96abe61c (diff)
downloadvyos.vyos-7712afd90de9a2b4f6d91f3fbea77de20d6ed40e.tar.gz
vyos.vyos-7712afd90de9a2b4f6d91f3fbea77de20d6ed40e.zip
Remove tests for net_* modules (#278)
Diffstat (limited to 'tests/integration/targets/vyos_system')
-rw-r--r--tests/integration/targets/vyos_system/tests/cli/net_system.yaml30
1 files changed, 0 insertions, 30 deletions
diff --git a/tests/integration/targets/vyos_system/tests/cli/net_system.yaml b/tests/integration/targets/vyos_system/tests/cli/net_system.yaml
deleted file mode 100644
index 758ba40..0000000
--- a/tests/integration/targets/vyos_system/tests/cli/net_system.yaml
+++ /dev/null
@@ -1,30 +0,0 @@
----
-- debug: msg="START vyos cli/net_system.yaml on connection={{ ansible_connection
- }}"
-
-- name: setup
- ignore_errors: true
- vyos.vyos.vyos_config:
- lines:
- - delete system name-server 192.0.2.1
- match: none
-
-- name: configure name servers using platform agnostic module
- register: result
- ansible.netcommon.net_system:
- name_servers:
- - 192.0.2.1
-
-- assert:
- that:
- - result.changed == true
- - result.commands[0] is search("set system name-server '192.0.2.1'")
-
-- name: setup
- ignore_errors: true
- vyos.vyos.vyos_config:
- lines:
- - delete system name-server 192.0.2.1
- match: none
-
-- debug: msg="END vyos cli/net_system.yaml on connection={{ ansible_connection }}"