Moved fixture constants to tests.fixtures.

This commit is contained in:
Jakub Roztocil
2014-04-24 15:17:04 +02:00
parent b880e996d0
commit 941c0a8c3c
9 changed files with 49 additions and 59 deletions

View File

@ -2,10 +2,8 @@ import os
from unittest import TestCase
from httpie.input import ParseError
from tests import (
TestEnvironment, http, httpbin,
FILE_PATH_ARG, FILE_PATH, HTTP_OK, FILE_CONTENT,
)
from tests import TestEnvironment, http, httpbin, HTTP_OK
from tests.fixtures import FILE_PATH_ARG, FILE_PATH, FILE_CONTENT
class MultipartFormDataFileUploadTest(TestCase):