1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-23 15:16:54 -05:00
denoland-deno/std/wasi/testdata/std_fs_hard_link.rs

12 lines
296 B
Rust
Raw Normal View History

// { "preopens": { "/fixture": "fixture", "/scratch": "scratch" } }
fn main() {
assert!(
std::fs::hard_link("/fixture/file", "/scratch/hardlink_to_file").is_ok()
);
assert_eq!(
std::fs::read("/fixture/file").unwrap(),
std::fs::read("/scratch/hardlink_to_file").unwrap()
);
}