(self)
| 467 | |
| 468 | class TestDocumentRecursiveShape(BaseExampleDocumenterTest): |
| 469 | def setUp(self): |
| 470 | super().setUp() |
| 471 | self.add_shape( |
| 472 | { |
| 473 | 'Structure': { |
| 474 | 'type': 'structure', |
| 475 | 'members': { |
| 476 | 'Foo': { |
| 477 | 'shape': 'Structure', |
| 478 | 'documentation': 'This is a recursive structure.', |
| 479 | } |
| 480 | }, |
| 481 | } |
| 482 | } |
| 483 | ) |
| 484 | self.add_shape_to_params( |
| 485 | 'Foo', 'Structure', 'This describes the structure.' |
| 486 | ) |
| 487 | |
| 488 | def test_request_example(self): |
| 489 | self.request_example.document_example( |
nothing calls this directly
no test coverage detected