mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-06 11:18:54 -05:00
* Add float -> int migration to Bank (float was a bug) * wrong refs * Cause ctx manager compares before and after values...
16 lines
380 B
Python
16 lines
380 B
Python
import pytest
|
|
from redbot.core import bank as bank_module
|
|
|
|
__all__ = ["bank"]
|
|
|
|
|
|
@pytest.fixture()
|
|
async 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
|
|
await bank_module._init()
|
|
return bank_module
|