You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/target/ids_test.go

19 lines
330 B

package target
import (
"strings"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func Test_Ids(t *testing.T) {
t.Parallel()
t.Run("tcp", func(t *testing.T) {
id, err := newTcpTargetId()
require.NoError(t, err)
assert.True(t, strings.HasPrefix(id, TcpTargetPrefix+"_"))
})
}