6 lines
153 B
Bash
6 lines
153 B
Bash
|
|
#!/bin/bash
|
||
|
|
# scripts/test.sh - 执行 fetch_openrouter 单元测试
|
||
|
|
set -e
|
||
|
|
cd "$(dirname "$0")"
|
||
|
|
go test -v fetch_openrouter.go fetch_openrouter_test.go
|