(self)
| 328 | |
| 329 | class TestDocumentStructure(BaseParamsDocumenterTest): |
| 330 | def setUp(self): |
| 331 | super().setUp() |
| 332 | self.add_shape( |
| 333 | { |
| 334 | 'Structure': { |
| 335 | 'type': 'structure', |
| 336 | 'members': { |
| 337 | 'Member': { |
| 338 | 'shape': 'String', |
| 339 | 'documentation': 'This is its member.', |
| 340 | } |
| 341 | }, |
| 342 | } |
| 343 | } |
| 344 | ) |
| 345 | self.add_shape_to_params( |
| 346 | 'Foo', 'Structure', 'This describes the structure.' |
| 347 | ) |
| 348 | |
| 349 | def test_request_params(self): |
| 350 | self.request_params.document_params( |
nothing calls this directly
no test coverage detected