Files
query-orchestration/internal/test/aws_test.go
T

28 lines
483 B
Go
Raw Normal View History

package test
import (
"context"
"testing"
2025-03-05 12:05:46 +00:00
"queryorchestration/internal/serviceconfig"
"github.com/stretchr/testify/assert"
)
func TestCreateQueueContainer(t *testing.T) {
if testing.Short() {
t.Skip("Skipping long test in short mode")
}
ctx := context.Background()
cfg := &serviceconfig.BaseConfig{}
SetCfgProvider(t, cfg)
qcfg, cleanup := CreateAWSContainer(t, ctx, &CreateAWSConfig{
Cfg: cfg,
})
assert.NotNil(t, qcfg)
assert.NotNil(t, cleanup)
cleanup()
}