aiogram/tests/conftest.py
2019-11-18 17:44:07 +02:00

11 lines
170 B
Python

import pytest
from aiogram import Bot
from tests.mocked_bot import MockedBot
@pytest.fixture()
def bot():
bot = MockedBot()
Bot.set_current(bot)
yield bot