( *args )
| 199 | } |
| 200 | |
| 201 | def ResolveResponse( *args ): |
| 202 | return { |
| 203 | 'completion': { |
| 204 | 'insertion_text': 'insertion_text', |
| 205 | 'menu_text': 'menu_text', |
| 206 | 'extra_menu_info': 'extra_menu_info', |
| 207 | 'detailed_info': 'detailed_info', |
| 208 | 'kind': 'kind', |
| 209 | 'extra_data': { |
| 210 | 'doc_string': 'doc_string with more info' |
| 211 | } |
| 212 | }, |
| 213 | 'errors': [] |
| 214 | } |
| 215 | |
| 216 | current_buffer = VimBuffer( 'buffer' ) |
| 217 | with MockVimBuffers( [ current_buffer ], [ current_buffer ] ): |
nothing calls this directly
no outgoing calls
no test coverage detected