Skip to content

Instantly share code, notes, and snippets.

@juntatalor
juntatalor / test_example.py
Created August 11, 2016 15:14 — forked from robcowie/test_example.py
py.test fixtures for testing tornado apps
def test_root_output(client):
resp = client.fetch('/')
assert resp.code == 200
assert resp.body == 'Hello, world'
def test_async_output(client):
resp = client.fetch('/async')
assert resp.code == 200