Skip to content

Commit

Permalink
Remove cleanup molecule playbook. Add more testinfra tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
deekayen committed Feb 11, 2021
1 parent 050ece1 commit 64b8d39
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
11 changes: 0 additions & 11 deletions molecule/default/cleanup.yml

This file was deleted.

12 changes: 12 additions & 0 deletions molecule/default/tests/test_default.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,18 @@ def test_mdatp_installed(host):
assert host.package("mdatp").is_installed


def test_mdatp_install_log(host):
assert host.file("/var/log/microsoft/mdatp/install.log").exists


def test_mdatp_group(host):
assert host.group("mdatp").exists


def test_mdatp_user(host):
assert host.user("mdatp").exists


def test_mdatp_service(host):
service = host.service("mdatp")

Expand Down

0 comments on commit 64b8d39

Please sign in to comment.