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