mirror of https://github.com/ansible/ansible.git
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.
26 lines
596 B
YAML
26 lines
596 B
YAML
6 years ago
|
---
|
||
|
- import_tasks: setup_value.yml
|
||
|
|
||
|
- name: unsetting value with check mode
|
||
|
git_config:
|
||
|
name: "{{ option_name }}"
|
||
|
scope: "{{ option_scope }}"
|
||
|
state: absent
|
||
|
check_mode: yes
|
||
|
register: unset_result
|
||
|
|
||
|
- name: getting value
|
||
|
git_config:
|
||
|
name: "{{ option_name }}"
|
||
|
scope: "{{ option_scope }}"
|
||
|
register: get_result
|
||
|
|
||
|
- name: assert unset changed but dit not delete value
|
||
|
assert:
|
||
|
that:
|
||
|
- unset_result.changed == true
|
||
|
- unset_result.diff.before == option_value + "\n"
|
||
|
- unset_result.diff.after == "\n"
|
||
|
- get_result.config_value == option_value
|
||
|
...
|