(self)
| 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': {}} |
no test coverage detected