test(saltcheck): test for commented and not commented

This commit is contained in:
Imran Iqbal
2019-10-17 19:49:00 +01:00
parent 007970f935
commit 50706119fa
2 changed files with 6 additions and 4 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ cron.{{ task }}:
- {{ section }}: '{{ task_options.get(section) }}'
{%- endif %}
{%- endfor %}
{%- if 'commented' in task_options and task_options.commented %}
{%- if task_options.commented|d(False) %}
- commented: True
{%- endif %}
{%- endfor %}
+5 -3
View File
@@ -44,15 +44,17 @@ validate_cron.{{ task }}_{{ section }}:
{%- endif %}
{%- endfor %}
{%- if 'commented' in task_options and task_options.commented %}
{%- set assertion = 'assertFalse' %}
{%- if task_options.commented|d(False) %}
{%- set assertion = 'assertTrue' %}
{%- endif %}
validate_cron.{{ task }}_commented:
module_and_function: cron.get_entry
args:
- {{ task_options.user|d('root') }}
- {{ task }}
assertion: assertTrue
assertion: {{ assertion }}
assertion_section: commented
{%- endif %}
{%- endif %}
{%- endfor %}