blob: 680ccd1a05c05d788c5d380d2768289c109df772 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
---
- name: rule-name-prefix-fail | this is not correctly capitalized
ansible.builtin.assert:
that: true
- name: This is missing the prefix
ansible.builtin.assert:
that: true
- name: name | This prefix is incomplete
ansible.builtin.assert:
that: true
- name: rule-name-prefix-fail | This is correctly | named too
ansible.builtin.assert:
that: true
|