mirror of
https://gitee.com/wanwujie/sub2api
synced 2026-05-06 06:00:44 +08:00
15 lines
407 B
Go
15 lines
407 B
Go
|
|
package repository
|
||
|
|
|
||
|
|
import "testing"
|
||
|
|
|
||
|
|
func TestShouldEnqueueSchedulerOutboxForExtraUpdates_CompactCapabilityKeysAreRelevant(t *testing.T) {
|
||
|
|
updates := map[string]any{
|
||
|
|
"openai_compact_supported": true,
|
||
|
|
"openai_compact_checked_at": "2026-04-10T10:00:00Z",
|
||
|
|
}
|
||
|
|
|
||
|
|
if !shouldEnqueueSchedulerOutboxForExtraUpdates(updates) {
|
||
|
|
t.Fatalf("expected compact capability updates to enqueue scheduler outbox")
|
||
|
|
}
|
||
|
|
}
|