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 38f6127 commit f3094eaCopy full SHA for f3094ea
tests/hardlinks_without_deduplication.rs
@@ -220,6 +220,17 @@ fn exclusive_hardlinks_only() {
220
221
assert_eq!(tree.shared.details, None);
222
assert_eq!(tree.shared.summary, None);
223
+
224
+ let visualization = Command::new(PDU)
225
+ .with_current_dir(&workspace)
226
+ .with_arg("--quantity=apparent-size")
227
+ .with_arg("only-hardlinks/exclusive")
228
+ .pipe(stdio)
229
+ .output()
230
+ .expect("spawn command")
231
+ .pipe(stdout_text);
232
+ eprintln!("STDOUT:\n{visualization}");
233
+ assert!(!visualization.contains("Hardlinks detected!"));
234
}
235
236
#[test]
0 commit comments