(self, env, request)
| 24 | |
| 25 | @pytest.fixture(autouse=True, scope='function') |
| 26 | def _method_scope(self, env, request): |
| 27 | self.domain = env.get_request_domain(request) |
| 28 | self.notify_cmd = os.path.join(env.test_dir, "../modules/md/notify.py") |
| 29 | self.notify_log = os.path.join(env.gen_dir, "notify.log") |
| 30 | if os.path.isfile(self.notify_log): |
| 31 | os.remove(self.notify_log) |
| 32 | |
| 33 | def configure_httpd(self, env, domain, add_lines=""): |
| 34 | conf = MDConf(env) |
nothing calls this directly
no test coverage detected