mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI.git
synced 2024-11-25 03:28:44 +00:00
add failing test which normally must be working ok
This commit is contained in:
parent
fd022742aa
commit
4c36750431
@ -0,0 +1,19 @@
|
|||||||
|
package com.github.insanusmokrassar.TelegramBotAPI
|
||||||
|
|
||||||
|
import com.github.insanusmokrassar.TelegramBotAPI.requests.abstracts.toInputFile
|
||||||
|
import com.github.insanusmokrassar.TelegramBotAPI.types.files.Photo
|
||||||
|
import com.github.insanusmokrassar.TelegramBotAPI.types.files.PhotoSize
|
||||||
|
import com.github.insanusmokrassar.TelegramBotAPI.types.message.content.media.PhotoContent
|
||||||
|
import kotlin.test.Test
|
||||||
|
|
||||||
|
class SimpleInputFilesTest {
|
||||||
|
@Test
|
||||||
|
fun test_that_creating_of_photo_and_converting_to_input_media_working_correctly() {
|
||||||
|
val photoContent = PhotoContent(
|
||||||
|
listOf(
|
||||||
|
PhotoSize("example_file_id".toInputFile(), "example_unique_file_id", 100, 100, 100)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
photoContent.toMediaGroupMemberInputMedia()
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user