diff --git a/playbook.yml b/playbook.yml index f3e7ddd..1d8b9db 100644 --- a/playbook.yml +++ b/playbook.yml @@ -20,7 +20,7 @@ file: path=/srv/website state=directory - name: Add a nice page - copy: content="Hello world" dest=/srv/website/hello.txt + copy: content="Hello world" dest=/srv/website/hello_world.txt handlers: - name: nginx restart diff --git a/test_nginx.py b/test_nginx.py index 52c358e..b98c9a4 100644 --- a/test_nginx.py +++ b/test_nginx.py @@ -14,7 +14,7 @@ def test_service(Service): def test_website_root(File): - f = File("/srv/website/hello.txt") + f = File("/srv/website/hello_world.txt") assert f.exists assert f.content == "Hello world" assert f.user == "root" @@ -24,5 +24,5 @@ def test_website_root(File): def test_website(Command): output = Command.check_output( - "curl -H 'Host: website' http://127.0.0.1/hello.txt") + "curl -H 'Host: website' http://127.0.0.1/hello_world.txt") assert output == "Hello world"