DriveLinked/pkg/common/token_test.go

17 lines
204 B
Go

package common
import (
"drive-linked/config"
"testing"
)
func TestNewToken(t *testing.T) {
config.SetupConfig()
token, err := NewToken("eigeen")
if err != nil {
t.Error(err)
}
t.Log(token)
}