summaryrefslogtreecommitdiff
path: root/test/integration/targets/cnos_command/tasks/cli.yaml
diff options
context:
space:
mode:
authorAnsible Core Team <info@ansible.com>2020-03-09 09:40:29 +0000
committerAnsible Core Team <info@ansible.com>2020-03-09 09:40:29 +0000
commit6e048cc2689d033b7757174d582077dd4af494b5 (patch)
tree05eb51738d05d26c992b439214c3dd7ffd1af538 /test/integration/targets/cnos_command/tasks/cli.yaml
parentcb06e04e718f73173a6dcae1b082637063bae786 (diff)
downloadansible-6e048cc2689d033b7757174d582077dd4af494b5.tar.gz
Migrated to community.general
Diffstat (limited to 'test/integration/targets/cnos_command/tasks/cli.yaml')
-rw-r--r--test/integration/targets/cnos_command/tasks/cli.yaml15
1 files changed, 0 insertions, 15 deletions
diff --git a/test/integration/targets/cnos_command/tasks/cli.yaml b/test/integration/targets/cnos_command/tasks/cli.yaml
deleted file mode 100644
index d675462dd0..0000000000
--- a/test/integration/targets/cnos_command/tasks/cli.yaml
+++ /dev/null
@@ -1,15 +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