fix tests

This commit is contained in:
Maybe Waffle 2022-06-26 23:36:02 +04:00
parent 16cbc07c9c
commit 6945ff1133
8 changed files with 14 additions and 2 deletions

View file

@ -44,7 +44,7 @@ pub trait Download<'w>
///
/// let TgFile { file_path, .. } = bot.get_file("*file_id*").send().await?;
/// let mut file = File::create("/tmp/test.png").await?;
/// bot.download_file(&file_path, &mut file).await?;
/// bot.download_file(&file_path.unwrap(), &mut file).await?;
/// # Ok(()) }
/// ```
///

View file

@ -78,6 +78,8 @@ mod tests {
last_name: None,
username: None,
language_code: None,
is_premium: false,
added_to_attachment_menu: false,
},
chat_instance: "123456".to_string(),
message: None,

View file

@ -704,6 +704,8 @@ mod tests {
last_name: Some("Last".to_string()),
username: Some("fl".to_string()),
language_code: Some("en".to_string()),
is_premium: false,
added_to_attachment_menu: false,
},
kind: ChatMemberKind::Administrator(Administrator {
custom_title: None,

View file

@ -62,7 +62,7 @@ mod tests {
file_id: "FILE_ID".to_owned(),
file_unique_id: "FILE_UNIQUE_ID".to_owned(),
file_size: Some(42),
file_path: Some("".to_owned()),
file_path: None,
}
);
}

View file

@ -67,6 +67,7 @@ mod tests {
username: Some("SomethingSomethingBot".to_owned()),
language_code: None,
is_premium: false,
added_to_attachment_menu: false,
},
can_join_groups: false,
can_read_all_group_messages: false,

View file

@ -1511,6 +1511,8 @@ mod tests {
slow_mode_delay: None,
linked_chat_id: None,
location: None,
join_by_request: None,
join_to_send_messages: None,
}),
description: None,
invite_link: None,

View file

@ -355,6 +355,8 @@ mod test {
last_name: None,
username: Some(String::from("WaffleLapkin")),
language_code: Some(String::from("en")),
is_premium: false,
added_to_attachment_menu: false,
}),
reply_to_message: None,
forward: None,

View file

@ -146,6 +146,7 @@ mod tests {
username: Some("Username".to_string()),
language_code: Some(String::from("ru")),
is_premium: false,
added_to_attachment_menu: false,
};
let actual = serde_json::from_str::<User>(json).unwrap();
assert_eq!(actual, expected)
@ -161,6 +162,7 @@ mod tests {
username: Some("aaaaaaaaaaaaaaaa".to_owned()),
language_code: None,
is_premium: false,
added_to_attachment_menu: false,
};
let user_b = User {
@ -171,6 +173,7 @@ mod tests {
username: None,
language_code: None,
is_premium: false,
added_to_attachment_menu: false,
};
assert_eq!(user_a.full_name(), "First Last");