Skip to content

Commit

Permalink
Auto merge of ycm-core#2005 - micbou:new-omni-ycm-core-test, r=micbou
Browse files Browse the repository at this point in the history
[READY] Add test to check if ycm_core is not imported

See PR ycm-core#2004.

<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.svg" height="40" alt="Review on Reviewable"/>](https://reviewable.io/reviews/valloric/youcompleteme/2005)
<!-- Reviewable:end -->
  • Loading branch information
homu committed Feb 25, 2016
2 parents fd0c2cc + 298c318 commit 27f3910
Showing 1 changed file with 59 additions and 0 deletions.
59 changes: 59 additions & 0 deletions python/ycm/tests/youcompleteme_test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
# Copyright (C) 2016 YouCompleteMe contributors
#
# This file is part of YouCompleteMe.
#
# YouCompleteMe is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# YouCompleteMe is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with YouCompleteMe. If not, see <http://www.gnu.org/licenses/>.

from ycm.test_utils import MockVimModule
MockVimModule()

import sys

from mock import patch
from hamcrest import assert_that, is_in, is_not

from ycm import base
from ycm.youcompleteme import YouCompleteMe
from ycmd import user_options_store


class YouCompleteMe_test():

# Minimal options to create the YouCompleteMe object.
DEFAULT_OPTIONS = {
'ycm_server_log_level': 'info',
'ycm_server_keep_logfiles': 0,
'ycm_min_num_of_chars_for_completion': 2,
'ycm_auto_trigger': 1,
'ycm_semantic_triggers': {}
}


def setUp( self ):
with patch( 'vim.eval', side_effect = self.VimEval ):
user_options_store.SetAll( base.BuildServerConf() )
self.ycm = YouCompleteMe( user_options_store.GetAll() )


def tearDown( self ):
self.ycm.OnVimLeave()


def VimEval( self, value ):
if value == 'g:':
return self.DEFAULT_OPTIONS


def YcmCoreNotImported_test( self ):
assert_that( 'ycm_core', is_not( is_in( sys.modules ) ) )

0 comments on commit 27f3910

Please sign in to comment.