(cls, name)
| 231 | |
| 232 | @classmethod |
| 233 | def has_shared_module(cls, name): |
| 234 | if cls.LIBEXEC_DIR is None: |
| 235 | env = HttpdTestEnv() # will initialized it |
| 236 | path = os.path.join(cls.LIBEXEC_DIR, f"mod_{name}.so") |
| 237 | return os.path.isfile(path) |
| 238 | |
| 239 | def __init__(self, pytestconfig=None): |
| 240 | self._our_dir = os.path.dirname(inspect.getfile(Dummy)) |
no test coverage detected