(self)
| 172 | self.assertEqual('foo bar', actual_value) |
| 173 | |
| 174 | def test_getattr_raise_attribute_error(self): |
| 175 | r = Request(URI, body='foo bar') |
| 176 | with self.assertRaises(AttributeError): |
| 177 | getattr(r, 'does_not_exist') |
| 178 | |
| 179 | def test_sanitizing_authorization_header(self): |
| 180 | r = Request(URI, headers={'Accept': 'application/json', |