1
0
Fork 0
wget/testenv/conf/environment_variables.py
Daniel Baumann 9591974d25
Adding upstream version 1.25.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-21 09:40:11 +02:00

14 lines
340 B
Python

from conf import hook
""" Test Option: EnvironmentVariables
This hook is used to define environment variables used for execution of wget
command in test."""
@hook(alias='EnvironmentVariables')
class URLs:
def __init__(self, envs):
self.envs = envs
def __call__(self, test_obj):
test_obj.envs.update(**self.envs)