Files
httprunner/tests/httpbin/debugtalk.py
2018-04-24 17:00:58 +08:00

7 lines
151 B
Python

def setup_hook_add_kwargs(method, url, kwargs):
kwargs["key"] = "value"
def setup_hook_remove_kwargs(method, url, kwargs):
kwargs.pop("key")