bindbox-game/internal/service/user/request_shipping_batch_test.go
邹方成 c9a83a232a
Some checks failed
Build docker and publish / linux (1.24.5) (push) Failing after 48s
feat: minesweeper dynamic config and granular rewards
2025-12-24 17:33:13 +08:00

16 lines
389 B
Go

package user
import (
"context"
"testing"
)
func TestRequestShippings_DedupAndSkip(t *testing.T) {
s := New(nil, nil)
// s.readDB/s.writeDB are nil in this placeholder; this test is a placeholder to ensure compilation.
_, _, _, _, _, err := s.RequestShippings(context.Background(), 1, []int64{0, 1, 1}, nil)
if err != nil {
// no real DB; just ensure function can be called
}
}