mirror of
https://github.com/scsibug/nostr-rs-relay.git
synced 2024-11-09 21:29:06 -05:00
10 lines
181 B
Rust
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();
|
||
|
}
|
||
|
}
|