From 8e93173cbaa2a1a000d964d5f54f30f7d2e58491 Mon Sep 17 00:00:00 2001 From: Akulij Date: Fri, 2 May 2025 17:45:53 +0300 Subject: [PATCH] create tests mod inside utils.rs --- src/utils.rs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/utils.rs b/src/utils.rs index 6b82b5e..d32faac 100644 --- a/src/utils.rs +++ b/src/utils.rs @@ -64,3 +64,10 @@ where teloxide::types::InlineKeyboardButtonKind::CallbackData(ci.get_id()), )) } + +#[cfg(test)] +mod tests { + use super::*; + use teloxide::types::InlineKeyboardButton; + use teloxide::types::InlineKeyboardMarkup; +}