mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-04 05:18:25 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			296 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			296 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package generate
 | 
						|
 | 
						|
import (
 | 
						|
	"os"
 | 
						|
	"testing"
 | 
						|
 | 
						|
	"github.com/stretchr/testify/assert"
 | 
						|
)
 | 
						|
 | 
						|
func TestMain(m *testing.M) {
 | 
						|
	retVal := m.Run()
 | 
						|
 | 
						|
	os.Exit(retVal)
 | 
						|
}
 | 
						|
 | 
						|
func TestGetRandomString(t *testing.T) {
 | 
						|
	randomString, err := GetRandomString(4)
 | 
						|
	assert.NoError(t, err)
 | 
						|
	assert.Len(t, randomString, 4)
 | 
						|
}
 |