mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-08-30 09:51:43 -07:00
Refactor tests to use is succeeded or is failed
This commit is contained in:
parent
e3a2b22fdd
commit
d93b27e120
6 changed files with 24 additions and 24 deletions
|
@ -398,7 +398,7 @@
|
|||
|
||||
- assert:
|
||||
that:
|
||||
- result.failed == true
|
||||
- result is failed
|
||||
|
||||
- name: try to import with force parameter
|
||||
mysql_db:
|
||||
|
|
|
@ -95,7 +95,7 @@
|
|||
- name: assert test mysql_db encoding param not valid - issue 8075 (failed=true)
|
||||
assert:
|
||||
that:
|
||||
- "result.failed == true"
|
||||
- result is failed
|
||||
- "'Traceback' not in result.msg"
|
||||
- "'Unknown character set' in result.msg"
|
||||
|
||||
|
@ -233,7 +233,7 @@
|
|||
- name: assert output message that database was not created using dbuser2
|
||||
assert:
|
||||
that:
|
||||
- "result.failed == true"
|
||||
- result is failed
|
||||
- "'Access denied' in result.msg"
|
||||
|
||||
- name: run command to test that database was not created
|
||||
|
@ -260,7 +260,7 @@
|
|||
- name: assert output message that database was not deleted using dbuser2
|
||||
assert:
|
||||
that:
|
||||
- "result.failed == true"
|
||||
- result is failed
|
||||
- "'Access denied' in result.msg"
|
||||
|
||||
- name: run command to test database was not deleted
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue