episteme-local 0.1.1

Local-first knowledge ingestion and intelligence workflows
1
2
3
4
5
6
7
8
9
10
11
12
use assert_cmd::Command;
use predicates::str::contains;

#[test]
fn cli_exposes_standalone_classify_command() -> Result<(), Box<dyn std::error::Error>> {
    Command::cargo_bin("episteme")?
        .arg("--help")
        .assert()
        .success()
        .stdout(contains("classify"));
    Ok(())
}