authelia/internal/suites/suite_postgres_test.go

32 lines
548 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 {
*RodSuite
2019-11-16 19:50:58 +00:00
}
func NewPostgresSuite() *PostgresSuite {
return &PostgresSuite{RodSuite: new(RodSuite)}
2019-11-16 19:50:58 +00:00
}
func (s *PostgresSuite) TestOneFactorScenario() {
suite.Run(s.T(), NewOneFactorScenario())
}
func (s *PostgresSuite) TestTwoFactorScenario() {
suite.Run(s.T(), NewTwoFactorScenario())
}
2019-11-16 19:50:58 +00:00
func TestPostgresSuite(t *testing.T) {
if testing.Short() {
t.Skip("skipping suite test in short mode")
}
suite.Run(t, NewPostgresSuite())
2019-11-16 19:50:58 +00:00
}