Fix nxos_interface_ospf idempotence issue (#27783)

* Add tests and fix 27167

* Add modify test
This commit is contained in:
Mike Wiebe
2017-08-07 13:54:31 -04:00
committed by Nathaniel Case
parent 2571fc061e
commit 65cf31e1ce
10 changed files with 197 additions and 0 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