(self)
| 318 | |
| 319 | class TestDocumentList(BaseExampleDocumenterTest): |
| 320 | def setUp(self): |
| 321 | super().setUp() |
| 322 | self.add_shape( |
| 323 | { |
| 324 | 'List': { |
| 325 | 'type': 'list', |
| 326 | 'member': { |
| 327 | 'shape': 'String', |
| 328 | 'documentation': 'A string element', |
| 329 | }, |
| 330 | } |
| 331 | } |
| 332 | ) |
| 333 | self.add_shape_to_params('Foo', 'List', 'This describes the list.') |
| 334 | |
| 335 | def test_request_example(self): |
| 336 | self.request_example.document_example( |
nothing calls this directly
no test coverage detected