We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 923f21c commit 76c3224Copy full SHA for 76c3224
molecule/default/tests/test_default_basic.py
@@ -24,12 +24,6 @@ def test_packages(host):
24
def test_services(host):
25
"""Verify that the expected services are present."""
26
s = host.service("systemd-resolved")
27
- # TODO - This assertion currently fails because of
28
- # pytest-dev/pytest-testinfra#757. Once
29
- # pytest-dev/pytest-testinfra#754 has been merged and a new
30
- # release is created the following line can be uncommented.
31
- #
32
- # See #3 for more details.
33
- # assert s.exists, "systemd-resolved service does not exist."
+ assert s.exists, "systemd-resolved service does not exist."
34
assert s.is_enabled, "systemd-resolved service is not enabled."
35
assert s.is_running, "systemd-resolved service is not running."
0 commit comments