kq 1.0.6

A jq-like cli tool that can query and transform kdl right in the command line
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use assert_cmd::Command;
use predicates::prelude::*;

mod accessor_multiple;
mod accessor_single;

#[test]
fn sanity() {
    Command::cargo_bin("kq")
        .unwrap()
        .assert()
        .success()
        .stdout(predicate::str::contains("print this help menu"))
        .stdout(predicate::str::contains("print the version"));
}