authelia/internal/suites/suite_postgres_test.go

32 lines
548 B
Go

package suites
import (
"testing"
"github.com/stretchr/testify/suite"
)
type PostgresSuite struct {
*RodSuite
}
func NewPostgresSuite() *PostgresSuite {
return &PostgresSuite{RodSuite: new(RodSuite)}
}
func (s *PostgresSuite) TestOneFactorScenario() {
suite.Run(s.T(), NewOneFactorScenario())
}
func (s *PostgresSuite) TestTwoFactorScenario() {
suite.Run(s.T(), NewTwoFactorScenario())
}
func TestPostgresSuite(t *testing.T) {
if testing.Short() {
t.Skip("skipping suite test in short mode")
}
suite.Run(t, NewPostgresSuite())
}