summaryrefslogtreecommitdiff
path: root/test/integration/targets/dellos10_facts/tests/cli/facts.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/dellos10_facts/tests/cli/facts.yaml')
-rw-r--r--test/integration/targets/dellos10_facts/tests/cli/facts.yaml48
1 files changed, 0 insertions, 48 deletions
diff --git a/test/integration/targets/dellos10_facts/tests/cli/facts.yaml b/test/integration/targets/dellos10_facts/tests/cli/facts.yaml
deleted file mode 100644
index 9f2d763de0..0000000000
--- a/test/integration/targets/dellos10_facts/tests/cli/facts.yaml
+++ /dev/null
@@ -1,48 +0,0 @@
----
-- debug: msg="START cli/facts.yaml"
-
-- name: test all facts
- dellos10_facts:
- gather_subset:
- - all
- provider: "{{ cli }}"
- register: result
-
-- assert:
- that:
- - "result.changed == false"
- - "result.ansible_facts is defined"
- - "result.ansible_facts.ansible_net_interfaces is defined"
- - "result.ansible_facts.ansible_net_memfree_mb is defined"
- - "result.ansible_facts.ansible_net_model is defined"
- - "result.ansible_facts.ansible_net_servicetag is defined"
- - "result.ansible_facts.ansible_net_version is defined"
-
-- name: test all facts except hardware
- dellos10_facts:
- gather_subset:
- - "!hardware"
- provider: "{{ cli }}"
- register: result
-
-- assert:
- that:
- - "result.changed == false"
- - "result.ansible_facts.ansible_net_interfaces is defined"
- - "result.ansible_facts.ansible_net_memfree_mb is not defined"
-
-- name: test interface facts
- dellos10_facts:
- gather_subset:
- - interfaces
- provider: "{{ cli }}"
- register: result
-
-- assert:
- that:
- - "result.changed == false"
- - "result.ansible_facts.ansible_net_interfaces is defined"
- - "result.ansible_facts.ansible_net_memfree_mb is not defined"
-
-
-- debug: msg="END cli/facts.yaml"