1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
pub use crate:: {
    app::{App},
};

mod app;

#[cfg(test)]
mod tests {
    use crate::app::App;
    #[test]
    fn it_works() {
        println!("BLAH: {:?}", App::new().bin_src(String::from("My binary")));
    }
}