1
0
mirror of https://github.com/scsibug/nostr-rs-relay.git synced 2025-03-16 18:10:28 -04:00

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
}