mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 13:52:54 +00:00
ios implementation for net_interface (#27459)
* ios implementation for net_interface * ios_interface implementation * ios_interface integration test * net_interface integration test for ios and other refactor * Update boilerplate and minor refactor
This commit is contained in:
committed by
Chris Alfonso
parent
70ce394840
commit
c4e06a1735
15
test/integration/targets/ios_interface/tasks/cli.yaml
Normal file
15
test/integration/targets/ios_interface/tasks/cli.yaml
Normal file
@@ -0,0 +1,15 @@
|
||||
---
|
||||
- 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
|
||||
Reference in New Issue
Block a user