mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-08-03 20:54:25 -07:00
Improve task names
This commit is contained in:
parent
6e183246fa
commit
9537cafadf
1 changed files with 4 additions and 4 deletions
|
@ -55,7 +55,7 @@
|
||||||
user_host: "%"
|
user_host: "%"
|
||||||
priv: "{{ test_default_priv_type }}"
|
priv: "{{ test_default_priv_type }}"
|
||||||
|
|
||||||
- name: Plugin auth | Change user plugin in check mode
|
- name: Plugin auth | Change auth user plugin in check mode
|
||||||
community.mysql.mysql_user:
|
community.mysql.mysql_user:
|
||||||
<<: *mysql_params
|
<<: *mysql_params
|
||||||
name: '{{ test_user_name }}'
|
name: '{{ test_user_name }}'
|
||||||
|
@ -66,12 +66,12 @@
|
||||||
check_mode: true
|
check_mode: true
|
||||||
register: result
|
register: result
|
||||||
|
|
||||||
- name: Plugin auth | Check that the module made a change auth plugin
|
- name: Plugin auth | Check that the module reported a change in auth plugin
|
||||||
ansible.builtin.assert:
|
ansible.builtin.assert:
|
||||||
that:
|
that:
|
||||||
- result is changed
|
- result is changed
|
||||||
|
|
||||||
- name: Plugin auth | Check that the expected plugin type is set
|
- name: Plugin auth | Check that the expected (previous) plugin type is set
|
||||||
ansible.builtin.include_tasks: utils/assert_plugin.yml
|
ansible.builtin.include_tasks: utils/assert_plugin.yml
|
||||||
vars:
|
vars:
|
||||||
user_name: "{{ test_user_name }}"
|
user_name: "{{ test_user_name }}"
|
||||||
|
@ -119,7 +119,7 @@
|
||||||
user_name: "{{ test_user_name }}"
|
user_name: "{{ test_user_name }}"
|
||||||
plugin_type: "{{ test_plugin_type }}"
|
plugin_type: "{{ test_plugin_type }}"
|
||||||
|
|
||||||
- name: Plugin auth | Set same plugint check that no changes are reported
|
- name: Plugin auth | Set same plugin to check that no changes are reported
|
||||||
community.mysql.mysql_user:
|
community.mysql.mysql_user:
|
||||||
<<: *mysql_params
|
<<: *mysql_params
|
||||||
name: '{{ test_user_name }}'
|
name: '{{ test_user_name }}'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue