From 2a66c0d4f43bd6194b4666d10bd483a8df1cec2f Mon Sep 17 00:00:00 2001 From: Finkelman Date: Fri, 21 Dec 2018 15:43:21 -0500 Subject: [PATCH] remove test that cant be run on CI --- src/rust_version.rs | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/src/rust_version.rs b/src/rust_version.rs index fcdfeac..aeddc31 100644 --- a/src/rust_version.rs +++ b/src/rust_version.rs @@ -232,18 +232,3 @@ pub fn remove_not_built_with( } Ok(total_disk_space) } - -#[cfg(test)] -mod tests { - use super::*; - - #[test] - fn test_rustup_toolchain_list_runs() { - rustup_toolchain_list().unwrap(); - } - - #[test] - fn test_lookup_from_rustup_runs() { - lookup_from_names(rustup_toolchain_list().unwrap().iter().map(|x| x.as_str())).unwrap(); - } -}