(self)
| 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( |
| 304 | self.doc_structure, self.operation_model.input_shape |
| 305 | ) |
| 306 | self.assert_contains_lines_in_order( |
| 307 | [ |
| 308 | ':type Foo: dict', |
| 309 | ':param Foo: This describes the map.', |
| 310 | ' - *(string) --*', |
| 311 | ' - *(string) --*', |
| 312 | ] |
| 313 | ) |
| 314 | |
| 315 | def test_response_params(self): |
| 316 | self.response_params.document_params( |
nothing calls this directly
no test coverage detected