mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-08-27 08:21:46 -07:00
Refactor tests to use "is" and "is not" changed
This commit is contained in:
parent
61586ae4cc
commit
e3a2b22fdd
18 changed files with 128 additions and 122 deletions
|
@ -17,7 +17,9 @@
|
|||
register: result
|
||||
|
||||
- name: assert root password is changed
|
||||
assert: { that: "result.changed == true" }
|
||||
assert:
|
||||
that:
|
||||
- result is changed
|
||||
|
||||
- name: Set root password again
|
||||
mysql_user:
|
||||
|
@ -31,7 +33,9 @@
|
|||
register: result
|
||||
|
||||
- name: Assert root password is not changed
|
||||
assert: { that: "result.changed == false" }
|
||||
assert:
|
||||
that:
|
||||
- result is not changed
|
||||
|
||||
- name: Set root password again
|
||||
mysql_user:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue