Improve test coverage

This commit is contained in:
Andrew Klychkov 2020-11-01 22:06:07 +03:00
parent 1d7d16ad13
commit 079afc7bb1

View file

@ -261,6 +261,19 @@
that:
- result.rowcount == [2]
- name: Pass wrong query type
mysql_query:
<<: *mysql_params
login_db: '{{ test_db }}'
query: {'this type is': 'wrong'}
register: result
ignore_errors: yes
- assert:
that:
- result is failed
- result.msg is search('the query option value must be a string or list')
- name: Drop db {{ test_db }}
mysql_query:
<<: *mysql_params