reef 0.0.50

a package to execute and log system commands
Documentation
#[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);
}