(self)
| 200 | |
| 201 | class TestDocumentExclude(BaseParamsDocumenterTest): |
| 202 | def setUp(self): |
| 203 | super().setUp() |
| 204 | self.add_shape_to_params('Foo', 'String', 'This describes foo.') |
| 205 | self.add_shape_to_params( |
| 206 | 'Bar', 'String', 'This describes bar.', is_required=True |
| 207 | ) |
| 208 | self.exclude_params = ['Foo'] |
| 209 | |
| 210 | def test_request_params(self): |
| 211 | self.request_params.document_params( |
nothing calls this directly
no test coverage detected