Skip to content

Instantly share code, notes, and snippets.

@Lothiraldan
Created October 10, 2011 21:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Lothiraldan/1276554 to your computer and use it in GitHub Desktop.
Save Lothiraldan/1276554 to your computer and use it in GitHub Desktop.
Example with nosetest test generator and a typo in the function.
def support_http_method(method):
if method in ('POST', 'GETT'):
return True
else:
return False
def test_support():
expected_values = {
'POST': True,
'GET': True,
'PUT': False,
'DELETE': False
}
for method, expected in expected_values.items():
yield check_support, method, expected
def check_support(method, expected):
assert support_http_method(method) == expected
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment