mirror of
				https://github.com/owncast/owncast.git
				synced 2025-10-31 01:56:55 +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)
 | |
| 	}
 | |
| }
 | 
