mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-12 11:29:48 +08:00
7 lines
151 B
Python
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")
|