From 87c5f3b0009696b0cd80fca60168b0aa344b4af0 Mon Sep 17 00:00:00 2001 From: Alex Wellnitz Date: Mon, 12 Feb 2024 21:45:41 +0100 Subject: [PATCH] fix: remove unused tests --- tests/handler_hello_test.rs | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 tests/handler_hello_test.rs diff --git a/tests/handler_hello_test.rs b/tests/handler_hello_test.rs deleted file mode 100644 index 1a2caf8..0000000 --- a/tests/handler_hello_test.rs +++ /dev/null @@ -1,10 +0,0 @@ -#[cfg(test)] -mod tests { - use rustysearch::handler::hello::say_hello; - - #[tokio::test] - async fn test_say_hello() { - let result = say_hello().await; - assert_eq!(result, "Hello, World!"); - } -} \ No newline at end of file