nostr-rs-relay/tests/cli.rs
2023-01-14 09:22:11 -06:00

10 lines
181 B
Rust

#[cfg(test)]
mod tests {
use nostr_rs_relay::cli::CLIArgs;
#[test]
fn cli_tests() {
use clap::CommandFactory;
CLIArgs::command().debug_assert();
}
}