mirror of
https://github.com/teloxide/teloxide.git
synced 2025-01-03 17:52:12 +01:00
fmt
This commit is contained in:
parent
cb3fde7191
commit
673269602d
2 changed files with 9 additions and 8 deletions
|
@ -15,7 +15,8 @@
|
|||
//! Ban,
|
||||
//! }
|
||||
//!
|
||||
//! let (command, args) = AdminCommand::parse("/ban 3 hours", "bot_name").unwrap();
|
||||
//! let (command, args) =
|
||||
//! AdminCommand::parse("/ban 3 hours", "bot_name").unwrap();
|
||||
//! assert_eq!(command, AdminCommand::Ban);
|
||||
//! assert_eq!(args, vec!["3", "hours"]);
|
||||
//! ```
|
||||
|
@ -207,10 +208,7 @@ mod tests {
|
|||
DefaultCommands::Start,
|
||||
DefaultCommands::parse("!start", "").unwrap().0
|
||||
);
|
||||
assert_eq!(
|
||||
DefaultCommands::descriptions(),
|
||||
"!start - desc\n/help\n"
|
||||
);
|
||||
assert_eq!(DefaultCommands::descriptions(), "!start - desc\n/help\n");
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
|
|
@ -82,9 +82,12 @@ pub fn derive_telegram_command_enum(tokens: TokenStream) -> TokenStream {
|
|||
.zip(variant_name)
|
||||
.map(|(prefix, command)| prefix.to_string() + command.as_str());
|
||||
let variant_str2 = variant_str1.clone();
|
||||
let variant_description = variant_infos
|
||||
.iter()
|
||||
.map(|info| info.description.as_deref().map(|e| format!(" - {}", e)).unwrap_or(String::new()));
|
||||
let variant_description = variant_infos.iter().map(|info| {
|
||||
info.description
|
||||
.as_deref()
|
||||
.map(|e| format!(" - {}", e))
|
||||
.unwrap_or(String::new())
|
||||
});
|
||||
|
||||
let ident = &input.ident;
|
||||
|
||||
|
|
Loading…
Reference in a new issue