mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-11-04 18:13:42 +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))
 | 
						|
}
 |