0815cb35fb
Basic Lint Checks * basic
21 lines
308 B
Go
21 lines
308 B
Go
package test_test
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"queryorchestration/internal/test"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestCreateNetwork(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
ncfg, cleanup := test.CreateNetwork(t, ctx)
|
|
assert.NotNil(t, ncfg)
|
|
assert.NotNil(t, cleanup)
|
|
|
|
cleanup()
|
|
}
|