Add changes from stable-1 integrations tests (PR 418)

This commit is contained in:
Laurent Indermuehle 2022-08-12 17:26:01 +02:00
commit aa7818f922
No known key found for this signature in database
GPG key ID: 93FA944C9F34DD09
12 changed files with 47 additions and 24 deletions

View file

@ -22,7 +22,7 @@
- name: assert output message changed value
assert:
that:
- "output.changed == {{ changed }}"
- "output.changed | bool == changed | bool"
- name: run mysql command to show variable
command: "{{ mysql_command }} \"-e show variables like '{{ var_name }}'\""
@ -31,6 +31,6 @@
- name: assert output mysql variable name and value
assert:
that:
- "result.changed == true"
- "result.changed | bool == true"
- "'{{ var_name }}' in result.stdout"
- "'{{ var_value }}' in result.stdout"