zlsrs 0.1.6

Rust 标准库扩展工具集,提供更便捷的使用方式
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use super::*;
use crate::zerror;
mod file;
mod path;

#[test]
fn test_mod() {
    let _ = zerror::try_catch(|| {
        path::test_dir();
        path::test_path();
        path::project_dir_type();

        file::test_file();
        Ok(())
    });
    let _ = remove("tmp", false);
}