From 8115ad2dd5fa6b06ec1709023f700f8b0b620874 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Sun, 9 Jun 2019 13:37:18 +0200 Subject: [PATCH] fix pep8 --- molecule/ec2-centos-7/tests/test_default.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/molecule/ec2-centos-7/tests/test_default.py b/molecule/ec2-centos-7/tests/test_default.py index 1ea751e..3ed80c9 100644 --- a/molecule/ec2-centos-7/tests/test_default.py +++ b/molecule/ec2-centos-7/tests/test_default.py @@ -13,19 +13,21 @@ def test_nginx_is_installed(host): nginx = host.package("nginx") assert nginx.is_installed + def test_nginx_running_and_enabled(host): nginx = host.service("nginx") assert nginx.is_running assert nginx.is_enabled + def test_nginx_process(host): # Verify worker procs are running master = host.process.get(user="root", comm="nginx") workers = host.process.filter(ppid=master.pid) assert len(workers) > 0 + def test_nginx_socket(host): # Verify the socket is listening for HTTP traffic assert host.socket("tcp://0.0.0.0:80").is_listening -