( column, line_contents )
| 34 | |
| 35 | @contextlib.contextmanager |
| 36 | def MockCurrentColumnAndLineContents( column, line_contents ): |
| 37 | with patch( 'ycm.vimsupport.CurrentColumn', return_value = column ): |
| 38 | with patch( 'ycm.vimsupport.CurrentLineContents', |
| 39 | return_value = line_contents ): |
| 40 | yield |
| 41 | |
| 42 | |
| 43 | @contextlib.contextmanager |
no outgoing calls
no test coverage detected