mirror of
https://github.com/fumiama/terasu-cloudflared.git
synced 2026-06-05 09:00:23 +08: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)
|
|
}
|