1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod structs;
mod cli;

#[cfg(test)]

mod tests {
    use assert_cmd::cmd::Command;
    #[test]
    fn help_test() -> anyhow::Result<(), anyhow::Error> {
        Command::new("pm").arg("-h");
        Ok(())
    }
}