summaryrefslogtreecommitdiff
path: root/test/integration/targets/nxos_lldp/tests/nxapi/sanity.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/nxos_lldp/tests/nxapi/sanity.yaml')
-rw-r--r--test/integration/targets/nxos_lldp/tests/nxapi/sanity.yaml47
1 files changed, 0 insertions, 47 deletions
diff --git a/test/integration/targets/nxos_lldp/tests/nxapi/sanity.yaml b/test/integration/targets/nxos_lldp/tests/nxapi/sanity.yaml
deleted file mode 100644
index d8abc1caa8..0000000000
--- a/test/integration/targets/nxos_lldp/tests/nxapi/sanity.yaml
+++ /dev/null
@@ -1,47 +0,0 @@
----
-- debug: msg="START TRANSPORT:NXAPI nxos_lldp sanity test"
-
-- name: Make sure LLDP is not running before tests
- nxos_feature:
- feature: lldp
- state: disabled
-
-- name: Enable LLDP service
- nxos_lldp:
- state: present
- register: result
-
-- assert:
- that:
- - 'result.changed == true'
- - '"feature lldp" in result.commands'
-
-- name: Enable LLDP service again (idempotent)
- nxos_lldp:
- state: present
- register: result
-
-- assert:
- that:
- - 'result.changed == false'
-
-- name: Disable LLDP service
- nxos_lldp:
- state: absent
- register: result
-
-- assert:
- that:
- - 'result.changed == true'
- - '"no feature lldp" in result.commands'
-
-- name: Disable LLDP service (idempotent)
- nxos_lldp:
- state: absent
- register: result
-
-- assert:
- that:
- - 'result.changed == false'
-
-- debug: msg="END TRANSPORT:NXAPI nxos_lldp sanity test"