9 lines
178 B
Rust
9 lines
178 B
Rust
|
use assert_cmd::Command;
|
||
|
|
||
|
#[test]
|
||
|
fn test_invalid_selector() {
|
||
|
let mut cmd = Command::cargo_bin("select-html").unwrap();
|
||
|
cmd.args([".#invalid"]);
|
||
|
cmd.assert().failure();
|
||
|
}
|