test-exec 0.1.0

Test your command line applications comfortably
1
2
3
4
5
6
7
//! `pwd` fallback.

use std::env::current_dir;

fn main() {
    println!("{}", current_dir().unwrap().display());
}