aiogram/tests/conftest.py

13 lines
207 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()
2019-12-03 00:03:15 +02:00
token = Bot.set_current(bot)
2019-11-18 17:44:07 +02:00
yield bot
2019-12-03 00:03:15 +02:00
Bot.reset_current(token)