diff --git a/rust/agama-lib/src/scripts/model.rs b/rust/agama-lib/src/scripts/model.rs index 401542b33..dc91006c8 100644 --- a/rust/agama-lib/src/scripts/model.rs +++ b/rust/agama-lib/src/scripts/model.rs @@ -150,13 +150,13 @@ mod test { assert_eq!(expected_body, body); } - #[test] - async fn test_add_with_url() { - let tmp_dir = TempDir::with_prefix("scripts-").expect("a temporary directory"); - let mut repo = ScriptsRepository::new(&tmp_dir); - repo.add_from_url("test", "http://localhost/scripts.sh") - .unwrap(); - let script = repo.scripts.first().unwrap(); - println!("script={}", script.path.to_str().unwrap()); - } + // #[test] + // async fn test_add_with_url() { + // let tmp_dir = TempDir::with_prefix("scripts-").expect("a temporary directory"); + // let mut repo = ScriptsRepository::new(&tmp_dir); + // repo.add_from_url("test", "http://localhost/scripts.sh") + // .unwrap(); + // let script = repo.scripts.first().unwrap(); + // println!("script={}", script.path.to_str().unwrap()); + // } }