Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: cs_template: fix missing cross_zone in tests #44794

Merged
merged 1 commit into from
Aug 28, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions test/integration/targets/cs_template/tasks/test2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
name: ansible-template-test2
display_text: first template
state: absent
cross_zones: yes
template_find_options: display_text
register: template
- name: verify setup template first template
Expand All @@ -16,6 +17,7 @@
name: ansible-template-test2
display_text: second template
state: absent
cross_zones: yes
template_find_options: display_text
register: template
- name: verify setup template second template
Expand Down Expand Up @@ -66,6 +68,7 @@
cs_template:
name: ansible-template-test2
state: absent
cross_zones: yes
register: template
ignore_errors: yes
- name: verify test multiple template same name absent without find options
Expand Down Expand Up @@ -146,6 +149,7 @@
name: ansible-template-test2
display_text: first template
state: absent
cross_zones: yes
template_find_options: display_text
register: template
- name: verify test delete first template
Expand All @@ -163,6 +167,7 @@
name: ansible-template-test2
display_text: second template
state: absent
cross_zones: yes
template_find_options: display_text
register: template
- name: verify test delete second template
Expand Down