1
0
mirror of https://gitlab.crans.org/nounous/ghostream.git synced 2024-12-23 10:52:19 +00:00
ghostream/auth/bypass/bypass_test.go
2020-10-01 20:11:43 +02:00

15 lines
241 B
Go

package bypass
import (
"testing"
)
func TestBypassLogin(t *testing.T) {
backend, _ := New()
ok, err := backend.Login("demo", "demo")
if !ok {
t.Error("Error while logging with the bypass authentication:", err)
}
backend.Close()
}