Compare commits

..

5 commits

Author SHA1 Message Date
6ee99686f5 build: remove unlinked files
UNLINK
2024-11-08 18:12:37 +00:00
2f00dcd0a3 feat(network)!: remove legacy network interface 2024-11-08 18:12:34 +00:00
ba8d85cc09 feat(net)!: fluent api
Some checks failed
Rust / build (map[name:stable]) (push) Failing after 5s
Rust / build (map[name:nightly]) (push) Failing after 12s
Closes kemitix/kxio#43
2024-11-08 18:12:32 +00:00
17816fa6ed build: ignore cargo-mutants output
All checks were successful
Rust / build (map[name:stable]) (push) Successful in 2m15s
Rust / build (map[name:nightly]) (push) Successful in 4m25s
Release Please / Release-plz (push) Successful in 38s
2024-11-08 18:12:25 +00:00
ed6d83cb7b tests(fs): add more test
All checks were successful
Rust / build (map[name:nightly]) (push) Successful in 2m1s
Rust / build (map[name:stable]) (push) Successful in 4m5s
Release Please / Release-plz (push) Successful in 42s
2024-11-08 18:12:12 +00:00

View file

@ -265,7 +265,6 @@ mod path {
fn should_be_false_when_is_a_link() -> TestResult { fn should_be_false_when_is_a_link() -> TestResult {
let fs = fs::temp().expect("temp fs"); let fs = fs::temp().expect("temp fs");
let path = fs.base().join("foo"); let path = fs.base().join("foo");
// TODO: (#38) create a link
// let_assert!(Ok(_) = fs.file_write(&path, "bar")); // let_assert!(Ok(_) = fs.file_write(&path, "bar"));
let is_dir = fs.path(&path).is_dir().expect("is_dir"); let is_dir = fs.path(&path).is_dir().expect("is_dir");
assert!(!is_dir); assert!(!is_dir);
@ -349,7 +348,6 @@ mod path {
fn should_be_false_when_is_a_link() -> TestResult { fn should_be_false_when_is_a_link() -> TestResult {
let fs = fs::temp().expect("temp fs"); let fs = fs::temp().expect("temp fs");
let path = fs.base().join("foo"); let path = fs.base().join("foo");
// TODO: (#38) create a link
// let_assert!(Ok(_) = fs.file_write(&path, "bar")); // let_assert!(Ok(_) = fs.file_write(&path, "bar"));
let is_file = fs.path(&path).is_file().expect("is_file"); let is_file = fs.path(&path).is_file().expect("is_file");
assert!(!is_file); assert!(!is_file);