mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-05 02:00:30 -07:00
47 lines
1.3 KiB
YAML
47 lines
1.3 KiB
YAML
# Copyright (c) 2021, Alexei Znamensky
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
- set_fact:
|
|
attr2_depr_dict:
|
|
msg: Attribute attr2 is deprecated
|
|
version: 9.9.9
|
|
collection_name: community.general
|
|
# With Data Tagging, the deprecation dict looks a bit different:
|
|
attr2_depr_dict_dt:
|
|
msg: Attribute attr2 is deprecated
|
|
version: 9.9.9
|
|
plugin:
|
|
requested_name: msimpleda
|
|
resolved_name: msimpleda
|
|
type: module
|
|
collection_name: null # should be "community.general"; this will hopefully change back because this seriously sucks
|
|
|
|
- name: test msimpleda 1
|
|
msimpleda:
|
|
a: 1
|
|
register: simple1
|
|
|
|
- name: assert simple1
|
|
assert:
|
|
that:
|
|
- simple1.a == 1
|
|
- simple1.attr1 == "abc"
|
|
- ("deprecations" not in simple1) or (attr2_depr_dict not in simple1.deprecations and attr2_depr_dict_dt not in simple1.deprecations)
|
|
|
|
- name: test msimpleda 2
|
|
msimpleda:
|
|
a: 2
|
|
register: simple2
|
|
|
|
- name: Show results
|
|
debug:
|
|
var: simple2
|
|
|
|
- name: assert simple2
|
|
assert:
|
|
that:
|
|
- simple2.a == 2
|
|
- simple2.attr2 == "def"
|
|
- '"deprecations" in simple2'
|
|
- attr2_depr_dict in simple2.deprecations or attr2_depr_dict_dt in simple2.deprecations
|