aboutsummaryrefslogtreecommitdiff
path: root/test/test_response.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_response.py')
-rw-r--r--test/test_response.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/test_response.py b/test/test_response.py
index ecfcbee..ad134ee 100644
--- a/test/test_response.py
+++ b/test/test_response.py
@@ -131,6 +131,11 @@ class TestResponse(unittest.TestCase):
self.assertEqual(r.read(1), b'f')
self.assertEqual(r.read(2), b'oo')
+ def test_body_blob(self):
+ resp = HTTPResponse(b'foo')
+ self.assertEqual(resp.data, b'foo')
+ self.assertTrue(resp.closed)
+
def test_io(self):
import socket
try: