From 0b7a3cbab5f8d485b261e921abc61e68047b17a1 Mon Sep 17 00:00:00 2001 From: Xory Date: Sun, 22 Sep 2024 18:31:46 +0300 Subject: [PATCH] chore: clean useless unit test --- src/lib.rs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index d3e2fb7..5cc4305 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -62,12 +62,3 @@ pub fn handle_client() { } } -#[cfg(test)] -mod tests { - use super::*; - - #[test] - fn test_disk_locator() { - assert_eq!(get_block_devices(), vec!["vda".to_string()] || vec!["sda".to_string()]) // Don't worry! This is *supposed* to not pass CI/CD. It should only be tested on QEMU/KVM Virtual Machines. - } -}