summaryrefslogtreecommitdiff
path: root/test/integration/targets/dellos9_command/tasks/cli.yaml
diff options
context:
space:
mode:
authorAnsible Core Team <info@ansible.com>2020-03-09 09:40:36 +0000
committerAnsible Core Team <info@ansible.com>2020-03-09 09:40:36 +0000
commit91e8679f56be4d8fd78bb3e1b2d5da53f874f753 (patch)
tree2abfce59200cd4e7d5992dc2d2ca78eab5ea8238 /test/integration/targets/dellos9_command/tasks/cli.yaml
parent92ff28ec75abca5c6420dffd71a7b2f91aecdcbf (diff)
downloadansible-91e8679f56be4d8fd78bb3e1b2d5da53f874f753.tar.gz
Migrated to dellemc_networking.os9
Diffstat (limited to 'test/integration/targets/dellos9_command/tasks/cli.yaml')
-rw-r--r--test/integration/targets/dellos9_command/tasks/cli.yaml16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/integration/targets/dellos9_command/tasks/cli.yaml b/test/integration/targets/dellos9_command/tasks/cli.yaml
deleted file mode 100644
index 8c11e106f2..0000000000
--- a/test/integration/targets/dellos9_command/tasks/cli.yaml
+++ /dev/null
@@ -1,16 +0,0 @@
----
-- name: collect all cli test cases
- find:
- paths: "{{ role_path }}/tests/cli"
- patterns: "{{ testcase }}.yaml"
- register: test_cases
-
-- name: set test_items
- set_fact:
- test_items: "{{ test_cases.files | map(attribute='path') | list }}"
-
-- name: run test case
- include: "{{ test_case_to_run }}"
- with_items: "{{ test_items }}"
- loop_control:
- loop_var: test_case_to_run