mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-18 17:37:46 +08:00
13 lines
171 B
Go
13 lines
171 B
Go
package remoteutil
|
|
|
|
import (
|
|
"slices"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestSchemes(t *testing.T) {
|
|
require.True(t, slices.IsSorted(schemes))
|
|
}
|