Update tests. Added missing files.

This commit is contained in:
Alex Root Junior 2022-08-14 15:53:20 +03:00
parent 4e0af00b73
commit f5de712fcc
No known key found for this signature in database
GPG key ID: 074C1D455EBEA4AC
6 changed files with 115 additions and 8 deletions

View file

@ -0,0 +1,37 @@
######################
getCustomEmojiStickers
######################
Returns: :obj:`List[Sticker]`
.. automodule:: aiogram.methods.get_custom_emoji_stickers
:members:
:member-order: bysource
:undoc-members: True
Usage
=====
As bot method
-------------
.. code-block::
result: List[Sticker] = await bot.get_custom_emoji_stickers(...)
Method as object
----------------
Imports:
- :code:`from aiogram.methods.get_custom_emoji_stickers import GetCustomEmojiStickers`
- alias: :code:`from aiogram.methods import GetCustomEmojiStickers`
With specific bot
~~~~~~~~~~~~~~~~~
.. code-block:: python
result: List[Sticker] = await bot(GetCustomEmojiStickers(...))