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

@ -5,11 +5,12 @@ from unittest import TestCase
# noinspection PyCompatibility
import argparse
from tests import (
TestEnvironment, http, httpbin,
from tests import TestEnvironment, http, httpbin, HTTP_OK
from tests.fixtures import (
FILE_PATH_ARG, JSON_FILE_PATH_ARG,
JSON_FILE_CONTENT, FILE_CONTENT, HTTP_OK, FILE_PATH
JSON_FILE_CONTENT, FILE_CONTENT, FILE_PATH
)
from httpie import input
from httpie.input import KeyValue, KeyValueArgType
from httpie import ExitStatus