| 161 | bool can_run_module(const std::string &module_name, std::string *error) const; |
| 162 | |
| 163 | bool module_enabled(const std::string& module_name) const |
| 164 | { |
| 165 | return modules.find(module_name) != modules.end(); |
| 166 | } |
| 167 | |
| 168 | bool any_supports_module(const std::string& module) const { |
| 169 | if (have_module(module)) { |
no test coverage detected