1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00
community.general/tests/integration/targets/module_helper/tasks/msimple.yml
Felix Fontein 9b1c6f0743
Enable tests (#3015)
* Enable tests.

* Fix error message check.

* Fix boolean tests.

* Adjust to Python version.
2021-07-16 19:29:00 +02:00

57 lines
1.1 KiB
YAML

# (c) 2021, Alexei Znamensky
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
- name: test msimple 1
msimple:
a: 80
register: simple1
- name: assert simple1
assert:
that:
- simple1.a == 80
- simple1.abc == "abc"
- simple1 is not changed
- simple1.value is none
- name: test msimple 2
msimple:
a: 101
ignore_errors: yes
register: simple2
- name: assert simple2
assert:
that:
- simple2.a == 101
- 'simple2.msg == "Module failed with exception: a >= 100"'
- simple2.abc == "abc"
- simple2 is failed
- simple2 is not changed
- simple2.value is none
- name: test msimple 3
msimple:
a: 2
b: potatoes
register: simple3
- name: assert simple3
assert:
that:
- simple3.a == 2
- simple3.b == "potatoespotatoes"
- simple3.c == "NoneNone"
- simple3 is not changed
- name: test msimple 4
msimple:
c: abc change
register: simple4
- name: assert simple4
assert:
that:
- simple4.c == "abc change"
- simple4.abc == "changed abc"
- simple4 is changed