mirror of
https://github.com/nais/wonderwall.git
synced 2026-05-09 01:47:03 +00:00
42 lines
566 B
Go
42 lines
566 B
Go
package session_test
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestData_HasAccessToken(t *testing.T) {
|
|
// TODO
|
|
}
|
|
|
|
func TestData_HasRefreshToken(t *testing.T) {
|
|
// TODO
|
|
}
|
|
|
|
func TestMetadata_NextRefresh(t *testing.T) {
|
|
// TODO
|
|
}
|
|
|
|
func TestMetadata_Refresh(t *testing.T) {
|
|
// TODO
|
|
}
|
|
|
|
func TestMetadata_RefreshCooldown(t *testing.T) {
|
|
// TODO
|
|
}
|
|
|
|
func TestMetadata_RefreshOnCooldown(t *testing.T) {
|
|
// TODO
|
|
}
|
|
|
|
func TestMetadata_ShouldRefresh(t *testing.T) {
|
|
// TODO
|
|
}
|
|
|
|
func TestMetadata_TokenAge(t *testing.T) {
|
|
// TODO
|
|
}
|
|
|
|
func TestMetadata_Verbose(t *testing.T) {
|
|
// TODO
|
|
}
|