We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34cf4a1 commit 0bfff61Copy full SHA for 0bfff61
src/utils/build_doc.rs
@@ -144,20 +144,6 @@ mod test {
144
use std::fs::remove_dir_all;
145
use super::*;
146
147
- #[test]
148
- fn test_build_doc() {
149
- let doc = build_doc("rand", None, None);
150
- assert!(doc.is_ok());
151
-
152
- let root_path = Path::new("cratesfyi");
153
- assert!(root_path.join("doc").join("rand").exists());
154
155
- remove_dir_all(root_path).unwrap();
156
157
- let doc = build_doc("SOMECRATEWICHWILLBENVEREXISTS", None, None);
158
- assert!(doc.is_err());
159
- }
160
161
#[test]
162
fn test_get_package() {
163
let pkg = get_package("rand", None);
0 commit comments