(self, doc_root, name, content)
| 30 | self.test_domain = env.get_request_domain(request) |
| 31 | |
| 32 | def _write_res_file(self, doc_root, name, content): |
| 33 | if not os.path.exists(doc_root): |
| 34 | os.makedirs(doc_root) |
| 35 | open(os.path.join(doc_root, name), "w").write(content) |
| 36 | |
| 37 | # create a MD not used in any virtual host, auto drive should NOT pick it up |
| 38 | def test_md_702_001(self, env): |
no test coverage detected