1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

MH additional tests (#3850)

This commit is contained in:
Alexei Znamensky 2021-12-06 09:46:08 +13:00 committed by GitHub
parent 4f4150117d
commit d50f30c618
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,17 @@
# (c) 2021, Alexei Znamensky # (c) 2021, Alexei Znamensky
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
- set_fact:
attr2_d:
msg: Attribute attr2 is deprecated
version: 9.9.9
collection_name: community.general
attr2_d_29:
msg: Attribute attr2 is deprecated
version: 9.9.9
- set_fact:
attr2_depr_dict: "{{ ((ansible_version.major, ansible_version.minor) < (2, 10))|ternary(attr2_d_29, attr2_d) }}"
- name: test msimpleda 1 - name: test msimpleda 1
msimpleda: msimpleda:
a: 1 a: 1
@ -11,21 +22,13 @@
that: that:
- simple1.a == 1 - simple1.a == 1
- simple1.attr1 == "abc" - simple1.attr1 == "abc"
- ("deprecations" not in simple1) or attr2_depr_dict not in simple1.deprecations
- name: test msimpleda 2 - name: test msimpleda 2
msimpleda: msimpleda:
a: 2 a: 2
register: simple2 register: simple2
- set_fact:
attr2_d:
msg: Attribute attr2 is deprecated
version: 9.9.9
collection_name: community.general
attr2_d_29:
msg: Attribute attr2 is deprecated
version: 9.9.9
- name: assert simple2 - name: assert simple2
assert: assert:
that: that:
@ -33,5 +36,3 @@
- simple2.attr2 == "def" - simple2.attr2 == "def"
- '"deprecations" in simple2' - '"deprecations" in simple2'
- attr2_depr_dict in simple2.deprecations - attr2_depr_dict in simple2.deprecations
vars:
attr2_depr_dict: "{{ ((ansible_version.major, ansible_version.minor) < (2, 10))|ternary(attr2_d_29, attr2_d) }}"