Skip to content

Instantly share code, notes, and snippets.

View djt5019's full-sized avatar
💭
STATUS UPDATE

Dan Tracy djt5019

💭
STATUS UPDATE
View GitHub Profile
@robcowie
robcowie / test_example.py
Created December 7, 2013 15:03
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
@dypsilon
dypsilon / frontendDevlopmentBookmarks.md
Last active April 30, 2024 04:42
A badass list of frontend development resources I collected over time.