Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
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 |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.