summaryrefslogtreecommitdiff
path: root/test/integration/targets/eos_vrf/tests/cli/net_vrf.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/eos_vrf/tests/cli/net_vrf.yaml')
-rw-r--r--test/integration/targets/eos_vrf/tests/cli/net_vrf.yaml38
1 files changed, 0 insertions, 38 deletions
diff --git a/test/integration/targets/eos_vrf/tests/cli/net_vrf.yaml b/test/integration/targets/eos_vrf/tests/cli/net_vrf.yaml
deleted file mode 100644
index c7abce9f20..0000000000
--- a/test/integration/targets/eos_vrf/tests/cli/net_vrf.yaml
+++ /dev/null
@@ -1,38 +0,0 @@
----
-- debug: msg="START eos cli/net_vrf.yaml on connection={{ ansible_connection }}"
-
-# Add minimal testcase to check args are passed correctly to
-# implementation module and module run is successful.
-
-- name: setup - remove vrf
- net_vrf:
- name: test
- state: absent
- provider: "{{ cli }}"
- become: yes
-
-- name: Create vrf using platform agnostic vrf module
- net_vrf:
- name: test
- rd: 1:200
- state: present
- provider: "{{ cli }}"
- become: yes
- register: result
-
-- assert:
- that:
- - "result.changed == true"
- - "'vrf definition test' in result.commands"
- - "'rd 1:200' in result.commands"
- # Ensure sessions contains epoc. Will fail after 18th May 2033
- - "'ansible_1' in result.session_name"
-
-- name: teardown - remove vrf
- net_vrf:
- name: test
- state: absent
- provider: "{{ cli }}"
- become: yes
-
-- debug: msg="END eos cli/net_vrf.yaml on connection={{ ansible_connection }}"