(self)
| 145 | self.assertEqual(r.decoded_body, []) |
| 146 | |
| 147 | def test_non_formencoded_string_body(self): |
| 148 | body = 'foo bar' |
| 149 | r = Request(URI, body=body) |
| 150 | self.assertIsNone(r.decoded_body) |
| 151 | |
| 152 | def test_param_free_sequence_body(self): |
| 153 | body = [1, 1, 2, 3, 5, 8, 13] |