721ca8a6e6
Dockerfile in Test * dockerfile * network * const
21 lines
326 B
Go
21 lines
326 B
Go
package test_test
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"queryorchestration/internal/test"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestDepNetworkGet(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
name := test.GetNetwork(t, ctx)
|
|
assert.NotNil(t, name)
|
|
|
|
newName := test.GetNetwork(t, ctx)
|
|
assert.Equal(t, name, newName)
|
|
}
|