nostr-rs-relay/tests/cli.rs

10 lines
181 B
Rust
Raw Normal View History

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