mirror of
https://github.com/boshu2/agentops.git
synced 2026-09-14 15:08:13 +08:00
11 lines
228 B
Bash
11 lines
228 B
Bash
#!/usr/bin/env bats
|
|
|
|
setup() {
|
|
REPO_ROOT="$(cd "$BATS_TEST_DIRNAME/../.." && pwd)"
|
|
}
|
|
|
|
@test "CLI contract aggregate gate is executable and green" {
|
|
run bash "$REPO_ROOT/scripts/check-cli-contract.sh"
|
|
[ "$status" -eq 0 ]
|
|
}
|