From cdc2882a6f7f3f39ceffd189533e7ecf6ff0898a Mon Sep 17 00:00:00 2001 From: Philippe Pepiot Date: Thu, 20 Aug 2015 18:00:16 +0200 Subject: [PATCH] Rename hello.txt to hello_world.txt --- playbook.yml | 2 +- test_nginx.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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"