reef 0.0.65

a package to execute and log system commands
Documentation
1
2
3
4
5
6
7
8
9
#[cfg(test)]
use reef::Env;

#[test]
fn env_default() {
    let env = Env::default();
    assert_eq!(whoami::username(), env.username);
    assert_eq!(whoami::hostname(), env.hostname);
}