mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-06 11:18:54 -05:00
16 lines
368 B
Python
16 lines
368 B
Python
import pytest
|
|
from redbot.core import bank as bank_module
|
|
|
|
__all__ = ["bank"]
|
|
|
|
|
|
@pytest.fixture()
|
|
def bank(config, monkeypatch):
|
|
from redbot.core import Config
|
|
|
|
with monkeypatch.context() as m:
|
|
m.setattr(Config, "get_conf", lambda *args, **kwargs: config)
|
|
# noinspection PyProtectedMember
|
|
bank_module._init()
|
|
return bank_module
|