mirror of
https://github.com/teloxide/teloxide.git
synced 2024-12-22 22:46:39 +01:00
Remove test-replacement-to-main in SendPhoto
This commit is contained in:
parent
fa8cefe504
commit
19f7ce1435
1 changed files with 0 additions and 30 deletions
|
@ -121,33 +121,3 @@ impl<'a> SendPhoto<'a> {
|
||||||
self
|
self
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(test)]
|
|
||||||
mod tests {
|
|
||||||
use super::*;
|
|
||||||
use reqwest::r#async::Client;
|
|
||||||
|
|
||||||
const TOKEN: &str = "882997251:AAGImZKe4cO6vDzluWzCgYqebziIMroN7uU";
|
|
||||||
const USER_ID: i64 = 268486177;
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn send_photo() {
|
|
||||||
use futures::FutureExt;
|
|
||||||
use futures::TryFutureExt;
|
|
||||||
tokio::run(async_send_photo().boxed().unit_error().compat())
|
|
||||||
}
|
|
||||||
|
|
||||||
async fn async_send_photo() {
|
|
||||||
let client = Client::new();
|
|
||||||
let req = SendPhoto::new(
|
|
||||||
RequestContext {
|
|
||||||
client: &client,
|
|
||||||
token: TOKEN,
|
|
||||||
},
|
|
||||||
ChatId::Id(USER_ID),
|
|
||||||
InputFile::File("D:\\Снимок.png".to_string().parse().unwrap()),
|
|
||||||
);
|
|
||||||
|
|
||||||
println!("{:?}", req.send().await);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in a new issue