blob: 8103b611ded948fa17f783bd6ff84559305ab907 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
"""Test Ansible Syntax.
This module contains tests that validate that linter does not produce errors
when encountering what counts as valid Ansible syntax.
"""
PB_WITH_NULL_TASKS = '''
- hosts: all
tasks:
'''
def test_null_tasks(default_text_runner):
"""Assure we do not fail when encountering null tasks."""
results = default_text_runner.run_playbook(PB_WITH_NULL_TASKS)
assert not results
|