Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename hello.txt to hello_world.txt #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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"