authelia/internal/suites/suite_postgres_test.go

21 lines
343 B
Go
Raw Normal View History

2019-11-16 19:50:58 +00:00
package suites
import (
"testing"
"github.com/stretchr/testify/suite"
)
type PostgresSuite struct {
*SeleniumSuite
}
func NewPostgresSuite() *PostgresSuite {
return &PostgresSuite{SeleniumSuite: new(SeleniumSuite)}
}
func TestPostgresSuite(t *testing.T) {
suite.Run(t, NewOneFactorScenario())
suite.Run(t, NewTwoFactorScenario())
2019-11-16 19:50:58 +00:00
}