16 lines
207 B
Go
16 lines
207 B
Go
|
package authn
|
||
|
|
||
|
import (
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestInit(t *testing.T) {
|
||
|
asserts := assert.New(t)
|
||
|
|
||
|
asserts.NotPanics(func() {
|
||
|
Init()
|
||
|
})
|
||
|
asserts.NotNil(AuthnInstance)
|
||
|
}
|