Skip to content

Commit

Permalink
Add unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
mariolenz committed Jan 10, 2024
1 parent e88601b commit 2fb85c1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/cloud/test_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,8 @@ def test_generate_documentation():
Path("tests/cloud/fixtures"),
)
assert documentation == expected_content


def test_generate_runtime_yml():
runtime_yml = g.generate_runtime_yml("1.2.3", ["foo", "bar"])
assert runtime_yml == {"requires_ansible": "1.2.3", "action_groups": ["foo", "bar"}

0 comments on commit 2fb85c1

Please sign in to comment.