(self)
| 373 | |
| 374 | class TestDocumentRecursiveShape(BaseParamsDocumenterTest): |
| 375 | def setUp(self): |
| 376 | super().setUp() |
| 377 | self.add_shape( |
| 378 | { |
| 379 | 'Structure': { |
| 380 | 'type': 'structure', |
| 381 | 'members': { |
| 382 | 'Foo': { |
| 383 | 'shape': 'Structure', |
| 384 | 'documentation': 'This is a recursive structure.', |
| 385 | } |
| 386 | }, |
| 387 | } |
| 388 | } |
| 389 | ) |
| 390 | self.add_shape_to_params( |
| 391 | 'Foo', 'Structure', 'This describes the structure.' |
| 392 | ) |
| 393 | |
| 394 | def test_request_params(self): |
| 395 | self.request_params.document_params( |
nothing calls this directly
no test coverage detected