From: Kenneth Reitz Date: Fri, 25 Feb 2011 13:58:24 +0000 (-0500) Subject: tests cleanups X-Git-Tag: v0.3.0^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f8032e08aeeff297ce72d8539be57207b97cf0f7;p=services%2Fpython-requests.git tests cleanups --- diff --git a/test_requests.py b/test_requests.py index 9249faf..22716f1 100644 --- a/test_requests.py +++ b/test_requests.py @@ -34,6 +34,7 @@ class RequestsTestSuite(unittest.TestCase): r = requests.get('http://www.google.com/search', params={'q': 'test'}, headers=heads) self.assertEqual(r.status_code, 200) + def test_HTTP_200_OK_GET_WITH_MIXED_PARAMS(self): heads = {'User-agent': 'Mozilla/5.0'} @@ -75,9 +76,9 @@ class RequestsTestSuite(unittest.TestCase): self.assertEqual(post2.status_code, 201) def test_POSTBIN_GET_POST_FILES_WITH_PARAMS(self): - # TODO: postbin w/ params + bin = requests.post('http://www.postbin.org/') - print bin.url + self.assertEqual(bin.status_code, 200) post2 = requests.post(bin.url, files={'some': open('test_requests.py')}, data={'some': 'data'})