mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-05-29 08:46:35 +00:00
14 lines
230 B
Go
14 lines
230 B
Go
package tunnel
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestDedup(t *testing.T) {
|
|
expected := []string{"a", "b"}
|
|
actual := dedup([]string{"a", "b", "a"})
|
|
require.ElementsMatch(t, expected, actual)
|
|
}
|