diff options
Diffstat (limited to '_pytest')
-rw-r--r-- | _pytest/conftest.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/_pytest/conftest.py b/_pytest/conftest.py index 7a6f39a..43d4a74 100644 --- a/_pytest/conftest.py +++ b/_pytest/conftest.py @@ -71,6 +71,10 @@ class FakeWeechat(): return "0x8a8a8a8b" def prefix(self, type): return "" + def config_get_plugin(self, key): + return "" + def color(self, name): + return "" def __getattr__(self, name): def method(*args): pass @@ -87,6 +91,7 @@ def mock_weechat(): wee_slack.slack_debug = "debug_buffer_ptr" wee_slack.STOP_TALKING_TO_SLACK = False wee_slack.proc = {} + wee_slack.weechat_version = 0x10500000 pass |