MCPcopy
hub / github.com/aws/aws-cli / create_help_command

Method create_help_command

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

Source from the content-addressed store, hash-verified

163 self.event_class = 'aws'
164
165 def create_help_command(self):
166 help_command = mock.Mock()
167 help_command.doc = ReSTDocument()
168 help_command.event_class = 'custom'
169 help_command.arg_table = {}
170 operation_model = mock.Mock()
171 operation_model.documentation = 'description'
172 operation_model.service_model.operation_names = []
173 help_command.obj = operation_model
174 return help_command
175
176 def create_tagged_union_shape(self):
177 shape_model = {'type': 'structure', 'union': True, 'members': {}}

Calls 1

ReSTDocumentClass · 0.90

Tested by

no test coverage detected