feat: describe testcase in chain-call style

This commit is contained in:
debugtalk
2020-06-01 11:25:16 +08:00
parent edf17c5508
commit e7aca43470
5 changed files with 189 additions and 81 deletions

View File

@@ -1,7 +1,7 @@
__version__ = "3.0.6"
__version__ = "3.0.7"
__description__ = "One-stop solution for HTTP(S) testing."
from httprunner.runner import HttpRunner
from httprunner.runner import HttpRunner, Config, Step, Request
from httprunner.schema import TConfig, TStep
__all__ = [
@@ -10,4 +10,7 @@ __all__ = [
"HttpRunner",
"TConfig",
"TStep",
"Config",
"Step",
"Request",
]