Skip to content

Instantly share code, notes, and snippets.

@Lothiraldan
Created October 10, 2011 20:40
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/1276459 to your computer and use it in GitHub Desktop.
Save Lothiraldan/1276459 to your computer and use it in GitHub Desktop.
Example with for in test method and a typo in function.
import unittest
def support_http_method(method):
if method in ('POST', 'GETT'):
return True
else:
return False
class SupportHttpMethodTestCase(unittest.TestCase):
def test_support(self):
expected_values = {
'POST': True,
'GET': True,
'PUT': False,
'DELETE': False
}
for method, expected in expected_values.items():
self.assertEqual(support_http_method(method), expected)
if __name__ == '__main__':
unittest.main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment