From ef52044c5f0411307ef2200fcb950bd84879266f Mon Sep 17 00:00:00 2001 From: Chad Whitacre Date: Wed, 23 Jan 2013 20:32:03 -0500 Subject: [PATCH] Remove a test per @kennethreitz in IRC The test suite is moving from the httpbin pattern (which hits the network) to depending on the request.prepare method (which doesn't). Here's a start ... --- test_requests.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test_requests.py b/test_requests.py index 425e357..e3f8627 100644 --- a/test_requests.py +++ b/test_requests.py @@ -76,10 +76,6 @@ class RequestsTestCase(unittest.TestCase): self.assertEqual(request.url, "http://example.com/path?key=value&a=b#fragment") - def test_HTTP_200_OK_GET(self): - r = requests.get(httpbin('get')) - self.assertEqual(r.status_code, 200) - def test_HTTP_200_OK_GET_ALTERNATIVE(self): r = requests.Request('GET', httpbin('get')) s = requests.Session() -- 2.7.4