blob: 66d8763ee1b7f3fe5f1baf5ed61efbbbaa5cc37d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
"""Test ability to import playbooks."""
from ansiblelint.rules import RulesCollection
from ansiblelint.runner import Runner
def test_task_hook_import_playbook(default_rules_collection: RulesCollection) -> None:
"""Assures import_playbook includes are recognized."""
playbook_path = "examples/playbooks/playbook-parent.yml"
runner = Runner(playbook_path, rules=default_rules_collection)
results = runner.run()
results_text = str(results)
assert len(runner.lintables) == 2
assert len(results) == 2
# Assures we detected the issues from imported playbook
assert "Commands should not change things" in results_text
assert "[name]" in results_text
assert "All tasks should be named" in results_text
|