You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
386 B
YAML
16 lines
386 B
YAML
7 years ago
|
# external1 and external2 are loaded from config path.
|
||
|
|
||
|
- name: integration/module_utils/from_config_path.yml
|
||
|
hosts: test-targets
|
||
|
any_errors_fatal: true
|
||
|
tasks:
|
||
|
|
||
|
- custom_python_external_module:
|
||
|
register: out
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- out.external1_path == "ansible/lib/module_utils/external1.py"
|
||
|
- out.external2_path == "ansible/lib/module_utils/external2.py"
|
||
|
|