(self)
| 287 | |
| 288 | class TestDocumentMap(BaseParamsDocumenterTest): |
| 289 | def setUp(self): |
| 290 | super().setUp() |
| 291 | self.add_shape( |
| 292 | { |
| 293 | 'Map': { |
| 294 | 'type': 'map', |
| 295 | 'key': {'shape': 'String'}, |
| 296 | 'value': {'shape': 'String'}, |
| 297 | } |
| 298 | } |
| 299 | ) |
| 300 | self.add_shape_to_params('Foo', 'Map', 'This describes the map.') |
| 301 | |
| 302 | def test_request_params(self): |
| 303 | self.request_params.document_params( |