Add nxos_interface integration testing (#23030)

This is a first step before starting the refactoring of
the nxos_interface code.
This commit is contained in:
Ricardo Carrillo Cruz
2017-03-29 11:01:38 +02:00
committed by GitHub
parent 864cafbf5e
commit ac6465689c
9 changed files with 170 additions and 1 deletions

View 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