ai-dispatch 10.39.0

Multi-AI CLI team orchestrator
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Cargo verify request tests for command semantics.
// Exports: no production API.
// Deps: parent build module.

use super::BuildRequest;
use std::path::Path;

#[test]
fn verify_request_keeps_cargo_test_semantics() {
    let request = BuildRequest::for_verify(
        Path::new("/tmp/project"),
        Some("cargo test --bin aid"),
    )
    .expect("cargo test is a supported verify command");
    assert_eq!(request.cargo_args(), ["test", "--message-format=json", "--bin", "aid"]);
}