| 12 | |
| 13 | |
| 14 | class ProxyTestSetup(HttpdTestSetup): |
| 15 | |
| 16 | def __init__(self, env: 'HttpdTestEnv'): |
| 17 | super().__init__(env=env) |
| 18 | self.add_source_dir(os.path.dirname(inspect.getfile(ProxyTestSetup))) |
| 19 | self.add_modules(["proxy", "proxy_http", "proxy_balancer", "lbmethod_byrequests"]) |
| 20 | |
| 21 | |
| 22 | class ProxyTestEnv(HttpdTestEnv): |