mirror of
https://github.com/teloxide/teloxide.git
synced 2024-12-22 14:35:36 +01:00
Update teloxide-core to master
This commit is contained in:
parent
2a58244ee5
commit
c129b6a53d
3 changed files with 10 additions and 1 deletions
|
@ -56,7 +56,8 @@ full = [
|
|||
]
|
||||
|
||||
[dependencies]
|
||||
teloxide-core = { version = "0.6.0", default-features = false }
|
||||
#teloxide-core = { version = "0.6.0", default-features = false }
|
||||
teloxide-core = { git = "https://github.com/teloxide/teloxide-core", rev = "b13393d", default-features = false }
|
||||
teloxide-macros = { version = "0.6.2", optional = true }
|
||||
|
||||
serde_json = "1.0"
|
||||
|
|
|
@ -191,6 +191,8 @@ mod tests {
|
|||
last_name: None,
|
||||
username: Some("abcd".to_string()),
|
||||
language_code: None,
|
||||
is_premium: false,
|
||||
added_to_attachment_menu: false,
|
||||
};
|
||||
assert_eq!(user_mention_or_link(&user_with_username), "@abcd");
|
||||
let user_without_username = User {
|
||||
|
@ -200,6 +202,8 @@ mod tests {
|
|||
last_name: None,
|
||||
username: None,
|
||||
language_code: None,
|
||||
is_premium: false,
|
||||
added_to_attachment_menu: false,
|
||||
};
|
||||
assert_eq!(
|
||||
user_mention_or_link(&user_without_username),
|
||||
|
|
|
@ -240,6 +240,8 @@ mod tests {
|
|||
last_name: None,
|
||||
username: Some("abcd".to_string()),
|
||||
language_code: None,
|
||||
is_premium: false,
|
||||
added_to_attachment_menu: false,
|
||||
};
|
||||
assert_eq!(user_mention_or_link(&user_with_username), "@abcd");
|
||||
let user_without_username = User {
|
||||
|
@ -249,6 +251,8 @@ mod tests {
|
|||
last_name: None,
|
||||
username: None,
|
||||
language_code: None,
|
||||
is_premium: false,
|
||||
added_to_attachment_menu: false,
|
||||
};
|
||||
assert_eq!(
|
||||
user_mention_or_link(&user_without_username),
|
||||
|
|
Loading…
Reference in a new issue