1
0
Fork 0
mirror of https://github.com/Luzifer/nginx-sso.git synced 2024-10-18 15:44:21 +00:00
nginx-sso/vendor/github.com/jda/go-crowd/cookie_test.go

20 lines
287 B
Go
Raw Normal View History

package crowd
import (
"testing"
)
func TestGetCookieConfig(t *testing.T) {
tv := PrepVars(t)
c, err := New(tv.AppUsername, tv.AppPassword, tv.AppURL)
if err != nil {
t.Error(err)
}
ck, err := c.GetCookieConfig()
if err != nil {
t.Error(err)
}
t.Logf("Got: %+v\n", ck)
}