mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
13 lines
308 B
Python
13 lines
308 B
Python
import factory
|
|
|
|
from aiogram.api.types.chat_member import ChatMember, ChatMemberStatus
|
|
from tests.factories.user import UserFactory
|
|
|
|
|
|
class ChatMemberFactory(factory.Factory):
|
|
class Meta:
|
|
model = ChatMember
|
|
|
|
user = factory.SubFactory(UserFactory)
|
|
|
|
status = ChatMemberStatus.ADMINISTRATOR
|