nostr-rs-relay/tests/cli.rs

11 lines
182 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();
}
2023-02-08 10:55:17 -05:00
}