Added fragments and check_mode tests

This commit is contained in:
Steve Teahan 2020-12-14 20:34:06 -05:00
parent e4648aceb5
commit 0c68410d16
3 changed files with 5 additions and 1 deletions

View file

@ -0,0 +1,2 @@
bugfixes:
- mysql_user - fixed change detection when using append_privs (https://github.com/ansible-collections/community.mysql/pull/72).

View file

@ -263,7 +263,8 @@
# Test that append_privs will not attempt to make a change where current privileges are a superset of new privileges
# (https://github.com/ansible-collections/community.mysql/issues/69)
- include: test_priv_append_no_change.yml
- include: test_priv_append_no_change.yml enable_check_mode=no
- include: test_priv_append_no_change.yml enable_check_mode=yes
# Tests for the TLS requires dictionary
- include: tls_requirements.yml

View file

@ -44,6 +44,7 @@
priv: 'data1.*:SELECT/data2.*:SELECT'
append_privs: yes
state: present
check_mode: '{{ enable_check_mode }}'
register: result
- name: Assert that there wasn't a change and that the permissions are still the same