vtcode 0.142.8

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
15
16
17
18
#![allow(
    missing_docs,
    reason = "Intentional compatibility, platform, test, or API-shape suppression."
)]
use predicates::str::contains;
use tempfile::tempdir;

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

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