(self)
| 134 | self.assert_proper_indentation() |
| 135 | |
| 136 | def test_handle_no_output_shape(self): |
| 137 | operation_model = mock.Mock() |
| 138 | operation_model.output_shape = None |
| 139 | self.help_command.obj = operation_model |
| 140 | self.operation_handler.doc_output(self.help_command, 'event-name') |
| 141 | self.assert_rendered_docs_contain('None') |
| 142 | |
| 143 | def test_handle_memberless_output_shape(self): |
| 144 | shape_map = {'NoMembers': {'type': 'structure', 'members': {}}} |
nothing calls this directly
no test coverage detected