fix: remove unused tests

This commit is contained in:
Alex Wellnitz 2024-02-12 21:45:41 +01:00
parent c502f1da49
commit 87c5f3b000

View File

@ -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!");
}
}