Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion playbook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions test_nginx.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"