aiogram/tests/conftest.py

12 lines
170 B
Python
Raw Normal View History

2019-11-18 17:44:07 +02:00
import pytest
from aiogram import Bot
from tests.mocked_bot import MockedBot
@pytest.fixture()
def bot():
bot = MockedBot()
Bot.set_current(bot)
yield bot