vtcode 0.98.7

A Rust-based terminal coding agent with modular architecture supporting multiple LLM providers
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use predicates::str::contains;
use tempfile::tempdir;

#[test]
fn pods_list_dispatches_through_the_binary() {
    let home = tempdir().expect("create temp home");

    assert_cmd::cargo::cargo_bin_cmd!("vtcode")
        .env("HOME", home.path())
        .args(["pods", "list"])
        .assert()
        .failure()
        .stderr(contains("no active pod configured"));
}