mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-11 18:01:04 +00:00
12 lines
207 B
Python
12 lines
207 B
Python
import pytest
|
|
|
|
from aiogram import Bot
|
|
from tests.mocked_bot import MockedBot
|
|
|
|
|
|
@pytest.fixture()
|
|
def bot():
|
|
bot = MockedBot()
|
|
token = Bot.set_current(bot)
|
|
yield bot
|
|
Bot.reset_current(token)
|