Avoid “__init__.py” files in test directories.

As recommended here:

	https://pytest.org/latest/goodpractises.html
This commit is contained in:
Jakub Roztocil
2014-04-28 11:29:41 +02:00
parent faec00fd99
commit 2aa53e4be3
16 changed files with 29 additions and 27 deletions

View File

@ -2,8 +2,8 @@
Tests for the provided defaults regarding HTTP method, and --json vs. --form.
"""
from tests import TestEnvironment, http, httpbin, HTTP_OK
from tests.fixtures import FILE_PATH
from utils import TestEnvironment, http, httpbin, HTTP_OK
from fixtures import FILE_PATH
class TestImplicitHTTPMethod: