1
2
3
4
5
6
7
8
9
#[cfg(test)]
mod tests {
    use assert_cmd::cmd::Command;
    #[test]
    fn help_test() -> anyhow::Result<(), anyhow::Error> {
        Command::new("pm").arg("-h");
        Ok(())
    }
}