Files
deb-python-falcon/tests/test_response_body.py
2014-01-02 09:41:26 -06:00

18 lines
361 B
Python

import falcon
import falcon.testing as testing
class TestResponseBody(testing.TestBase):
def test_append_body(self):
text = "Hello beautiful world! "
resp = falcon.Response()
resp.body = ""
for token in text.split():
resp.body += token
resp.body += " "
self.assertEqual(resp.body, text)