Parcourir la source

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 -->
Homu il y a 8 ans
Parent
commit
d55b5c09d6

+ 0 - 0
python/ycm/client/tests/__init__.py → python/ycm/tests/client/__init__.py


+ 0 - 0
python/ycm/client/tests/command_request_test.py → python/ycm/tests/client/command_request_test.py


+ 1 - 1
python/ycm/client/tests/completion_request_test.py → python/ycm/tests/client/completion_request_test.py

@@ -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 ):

+ 0 - 0
python/ycm/client/tests/omni_completion_request_tests.py → python/ycm/tests/client/omni_completion_request_tests.py