use super::RULE;
#[test]
fn ignore_non_streaming_with_complete() {
RULE.assert_ignores("^curl https://api.example.com | complete");
}
#[test]
fn ignore_streaming_without_complete() {
RULE.assert_ignores("^cargo build");
}
#[test]
fn ignore_git_status_complete() {
RULE.assert_ignores("^git status | complete");
}
#[test]
fn ignore_git_log_complete() {
RULE.assert_ignores("^git log | complete");
}
#[test]
fn ignore_jq_complete() {
RULE.assert_ignores("^jq '.field' data.json | complete");
}
#[test]
fn ignore_streaming_piped_elsewhere() {
RULE.assert_ignores("^cargo build | lines | each { print $in }");
}