24 lines
465 B
Go
24 lines
465 B
Go
package auth
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
// Test stubs for now
|
|
|
|
|
|
func TestAuthNewTokenSuccess(t *testing.T) {
|
|
t.Fatalf("Test me: New token passes. Different scopes etc.")
|
|
}
|
|
|
|
func TestAuthNewTokenFail(t *testing.T) {
|
|
t.Fatalf("Test me: New token fails (error generating random string? others?)")
|
|
}
|
|
|
|
func TestAuthScopeValid(t *testing.T) {
|
|
t.Fatalf("Test me: Scope Valid tests")
|
|
}
|
|
|
|
func TestAuthScopeInvalid(t *testing.T) {
|
|
t.Fatalf("Test me: Scope Invalid tests")
|
|
}
|