MCPcopy Create free account
hub / github.com/aws/aws-cli / test_handle_no_output_shape

Method test_handle_no_output_shape

tests/unit/test_clidocs.py:136–141  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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': {}}}

Callers

nothing calls this directly

Calls 2

doc_outputMethod · 0.45

Tested by

no test coverage detected