diff --git a/.gitignore b/.gitignore index c6262ea..4474934 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,4 @@ target *.swp +*.tar.gz +tldr-master/ diff --git a/src/types.rs b/src/types.rs index af54ec3..a906f35 100644 --- a/src/types.rs +++ b/src/types.rs @@ -80,7 +80,8 @@ mod test { assert_eq!(json::decode::("\"Linux\"").unwrap(), Linux); assert_eq!(json::decode::("\"LINUX\"").unwrap(), Linux); } -#[test] + + #[test] fn test_os_type_decoding_unknown() { assert!(json::decode::("\"lindows\"").is_err()); }