Copy collection integration tests in

This commit is contained in:
Caleb Boylan
2020-02-28 12:36:32 -08:00
parent fe046b47b5
commit 4a6db13daa
18 changed files with 1667 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
- name: Export all Tower assets
tower_receive:
all: True
register: result
- assert:
that:
- "result is successful"
- name: Extract names from output
set_fact:
object_names: "{{ result.assets | map(attribute='name') | list }}"
- assert:
that:
- "result is successful"
- "'Default' in object_names"