mirror of
				https://github.com/owncast/owncast.git
				synced 2025-11-03 21:08:36 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			151 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			151 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package utils
 | 
						|
 | 
						|
import (
 | 
						|
	"testing"
 | 
						|
)
 | 
						|
 | 
						|
func TestCreateAccessToken(t *testing.T) {
 | 
						|
	if _, err := GenerateAccessToken(); err != nil {
 | 
						|
		t.Error(err)
 | 
						|
	}
 | 
						|
}
 |