community.general 测试(插件)指南

the community.general 集合 目前提供一个测试插件。

功能测试

the community.general.a_module 测试 可以检查给定字符串是否引用现有的模块或操作插件。这在角色中非常有用,角色可以使用此功能来确保所需模块提前存在。

- name: Make sure that community.aws.route53 is available
  assert:
    that:
      - >
        'community.aws.route53' is community.general.a_module

- name: Make sure that community.general.does_not_exist is not a module or action plugin
  assert:
    that:
      - "'community.general.does_not_exist' is not community.general.a_module"

4.0.0 版本新增。