4fe08441be
* Warn on tests used as filters * Update docs, add aliases for tests that fit more gramatically with test syntax * Fix rst formatting * Add successful filter, alias of success * Remove renamed_deprecation, it was overkill * Make directory alias for is_dir * Update tests to use proper jinja test syntax * Update additional documentation, living outside of YAML files, to reflect proper jinja test syntax * Add conversion script, porting guide updates, and changelog updates * Update newly added uses of tests as filters * No underscore variable * Convert recent tests as filter changes to win_stat * Fix some changes related to rebasing a few integration tests * Make tests_as_filters_warning explicitly accept the name of the test, instead of inferring the name * Add test for tests_as_filters_warning * Update tests as filters in newly added/modified tests * Address recent changes to several integration tests * Address recent changes in cs_vpc
20 lines
1.1 KiB
YAML
20 lines
1.1 KiB
YAML
# this only tests check mode as the full run can take several minutes to
|
|
# complete, this way we at least verify the script is parsable
|
|
---
|
|
- name: run in check mode
|
|
win_dotnet_ngen:
|
|
register: result_check
|
|
check_mode: yes
|
|
|
|
- name: assert run in check mode
|
|
assert:
|
|
that:
|
|
- result_check is changed
|
|
- result_check.dotnet_ngen_update_exit_code == 0
|
|
- result_check.dotnet_ngen_update_output == "check mode output for C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\ngen.exe update /force"
|
|
- result_check.dotnet_ngen_eqi_exit_code == 0
|
|
- result_check.dotnet_ngen_eqi_output == "check mode output for C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\ngen.exe executeQueuedItems"
|
|
- result_check.dotnet_ngen64_update_exit_code == 0
|
|
- result_check.dotnet_ngen64_update_output == "check mode output for C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\ngen.exe update /force"
|
|
- result_check.dotnet_ngen64_eqi_exit_code == 0
|
|
- result_check.dotnet_ngen64_eqi_output == "check mode output for C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\ngen.exe executeQueuedItems"
|