summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/nxos_feature/tests/nxapi/configure.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/nxos_feature/tests/nxapi/configure.yaml')
-rw-r--r--test/integration/targets/nxos_feature/tests/nxapi/configure.yaml60
1 files changed, 0 insertions, 60 deletions
diff --git a/test/integration/targets/nxos_feature/tests/nxapi/configure.yaml b/test/integration/targets/nxos_feature/tests/nxapi/configure.yaml
deleted file mode 100644
index 7c5d003cb5..0000000000
--- a/test/integration/targets/nxos_feature/tests/nxapi/configure.yaml
+++ /dev/null
@@ -1,60 +0,0 @@
----
-- debug: msg="START nxapi/configure.yaml"
-
-- name: setup
- nxos_config:
- lines: no feature bgp
- match: none
- provider: "{{ nxapi }}"
-
-- name: enable bgp
- nxos_feature:
- feature: bgp
- state: enabled
- provider: "{{ nxapi }}"
- register: result
-
-- assert:
- that:
- - "result.changed == true"
-
-- name: verify bgp
- nxos_feature:
- feature: bgp
- state: enabled
- provider: "{{ nxapi }}"
- register: result
-
-- assert:
- that:
- - "result.changed == false"
-
-- name: disable bgp
- nxos_feature:
- feature: bgp
- state: disabled
- provider: "{{ nxapi }}"
- register: result
-
-- assert:
- that:
- - "result.changed == true"
-
-- name: verify bgp
- nxos_feature:
- feature: bgp
- state: disabled
- provider: "{{ nxapi }}"
- register: result
-
-- assert:
- that:
- - "result.changed == false"
-
-- name: teardown
- nxos_config:
- lines: no feature bgp
- match: none
- provider: "{{ nxapi }}"
-
-- debug: msg="END nxapi/configure.yaml"