1
0
mirror of https://github.com/volatiletech/authboss.git synced 2024-11-28 08:58:38 +02:00
authboss/defaults/defaults_test.go

40 lines
777 B
Go
Raw Normal View History

package defaults
import (
"testing"
"github.com/volatiletech/authboss"
)
func TestSetCore(t *testing.T) {
t.Parallel()
config := &authboss.Config{}
SetCore(config, false, false)
if config.Core.Logger == nil {
t.Error("logger should be set")
}
if config.Core.Router == nil {
t.Error("router should be set")
}
if config.Core.ErrorHandler == nil {
t.Error("error handler should be set")
}
if config.Core.Responder == nil {
t.Error("responder should be set")
}
if config.Core.Redirector == nil {
t.Error("redirector should be set")
}
if config.Core.BodyReader == nil {
t.Error("bodyreader should be set")
}
if config.Core.Mailer == nil {
t.Error("mailer should be set")
}
if config.Core.Logger == nil {
t.Error("logger should be set")
}
}