Auto merge of #2394 - micbou:move-client-tests, r=Valloric

[READY] Move client tests to the main tests folder

This makes it possible to configure all tests at a package level by implementing the `setUpPackage` and `tearDownPackage` functions in `python/ycm/tests/__init__.py` file.

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/valloric/youcompleteme/2394)
<!-- Reviewable:end -->
This commit is contained in:
Homu 2016-10-26 07:46:33 +09:00
commit d55b5c09d6
4 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ from nose.tools import eq_
from ycm.tests.test_utils import MockVimModule from ycm.tests.test_utils import MockVimModule
vim_mock = MockVimModule() vim_mock = MockVimModule()
from .. import completion_request from ycm.client import completion_request
class ConvertCompletionResponseToVimDatas_test( object ): class ConvertCompletionResponseToVimDatas_test( object ):