gray/lib.rs
1pub mod cli;
2
3#[cfg(test)]
4mod tests {
5
6 use std::collections::HashMap;
7 use std::vec::Vec;
8 use crate::cli;
9 #[test]
10 fn application() {
11 let app = cli::default();
12 let second_app = cli::App{
13 name: String::from("Test"),
14 authors : Vec::from([String::from("Test")]),
15 actions : HashMap::new()
16 };
17 assert!(app==second_app);
18 }
19}
20
21pub mod grey{
22 pub fn setup(){
23 println!("hello!");
24 }
25}