fix tests

This commit is contained in:
Nick Pegg 2025-05-04 10:31:41 -07:00
parent 4272a22a34
commit 36abf3ecc5
2 changed files with 7 additions and 7 deletions

View file

@ -144,11 +144,11 @@ mod tests {
description: "".to_string(), description: "".to_string(),
images: vec![ images: vec![
Image { Image {
path: "foo".into(), filename: "foo".into(),
description: "".to_string(), description: "".to_string(),
}, },
Image { Image {
path: "bar".into(), filename: "bar".into(),
description: "".to_string(), description: "".to_string(),
}, },
], ],
@ -160,11 +160,11 @@ mod tests {
description: "".to_string(), description: "".to_string(),
images: vec![ images: vec![
Image { Image {
path: "subdir/foo".into(), filename: "subdir/foo".into(),
description: "".to_string(), description: "".to_string(),
}, },
Image { Image {
path: "subdir/bar".into(), filename: "subdir/bar".into(),
description: "".to_string(), description: "".to_string(),
}, },
], ],
@ -172,7 +172,7 @@ mod tests {
path: "deeper_subdir".into(), path: "deeper_subdir".into(),
description: "".to_string(), description: "".to_string(),
images: vec![Image { images: vec![Image {
path: "deeper_subdir/image.jpg".into(), filename: "deeper_subdir/image.jpg".into(),
description: "".to_string(), description: "".to_string(),
}], }],
children: vec![], children: vec![],
@ -188,7 +188,7 @@ mod tests {
let imgs: HashSet<String> = ad let imgs: HashSet<String> = ad
.iter() .iter()
.map(|i| i.path.clone().to_str().unwrap().to_string()) .map(|i| i.filename.to_str().unwrap().to_string())
.collect(); .collect();
let expected: HashSet<String> = [ let expected: HashSet<String> = [
"foo", "foo",

View file

@ -65,7 +65,7 @@ mod tests {
let tmpdir = Temp::new_dir().unwrap(); let tmpdir = Temp::new_dir().unwrap();
make_skeleton(&tmpdir).unwrap(); make_skeleton(&tmpdir).unwrap();
assert!(tmpdir.join("photojawn.conf.yml").exists()); assert!(tmpdir.join("photojawn.conf.yml").exists());
assert!(tmpdir.join("static/index.css").exists()); assert!(tmpdir.join("_static/index.css").exists());
assert!(tmpdir.join("_templates/base.html").exists()); assert!(tmpdir.join("_templates/base.html").exists());
} }