(self)
| 163 | self.assertCountEqual(r.decoded_body, PARAMS_TWOTUPLE) |
| 164 | |
| 165 | def test_getattr_existing_attribute(self): |
| 166 | r = Request(URI, body='foo bar') |
| 167 | self.assertEqual('foo bar', getattr(r, 'body')) |
| 168 | |
| 169 | def test_getattr_return_default(self): |
| 170 | r = Request(URI, body='') |