mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-08 17:13:56 +00:00
11 lines
170 B
Python
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
|