ansible/test/integration/targets/collections/import_collection_pb.yml
Brian Coca 6418f368e3
Fix pb subs collapse (#74301)
* fix subdir parsing for plays

  fixes #74283

  Co-authored-by: Nikolaos Kakouros <nkak@kth.se>
2021-04-21 17:27:41 -04:00

17 lines
509 B
YAML

- import_playbook: testns.testcoll.default_collection_playbook.yml
- import_playbook: testns.testcoll.default_collection_playbook
# test subdirs
- import_playbook: "testns.testcoll.play"
- import_playbook: "testns.testcoll.type.play"
- import_playbook: "testns.testcoll.type.subtype.play"
- hosts: localhost
gather_facts: false
tasks:
- name: check values from imports
assert:
that:
- play is defined
- play_type is defined
- play_type_subtype is defined