mirror of
https://github.com/Luzifer/nginx-sso.git
synced 2024-12-21 05:11:17 +00:00
20 lines
287 B
Go
20 lines
287 B
Go
|
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)
|
||
|
}
|