单二进制三角色 + Dock 适配器 + Swarm stack 达到可部署态;mgr1 实测订阅经 central-proxy bootstrap,探活 alive=41/52。 Co-authored-by: Cursor <cursoragent@cursor.com>
16 lines
322 B
Go
16 lines
322 B
Go
package store
|
||
|
||
import (
|
||
"testing"
|
||
|
||
_ "modernc.org/sqlite"
|
||
)
|
||
|
||
// TestDependencyProbe 探针:保证 modernc.org/sqlite 出现在 go.mod(W1 交付纪律)。
|
||
// 真正的 migration/抢单测试见 store_test.go。
|
||
func TestDependencyProbe(t *testing.T) {
|
||
drv := "sqlite"
|
||
if drv == "" {
|
||
t.Fatal("unreachable")
|
||
}
|
||
}
|