blob: 397225fea6f15793b31f0a93f137451707a490c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
package suites
import (
"testing"
"github.com/stretchr/testify/suite"
)
type PostgresSuite struct {
*RodSuite
}
func NewPostgresSuite() *PostgresSuite {
return &PostgresSuite{
RodSuite: NewRodSuite(postgresSuiteName),
}
}
func (s *PostgresSuite) Test1FAScenario() {
suite.Run(s.T(), New1FAScenario())
}
func (s *PostgresSuite) TestTwoFactorTOTPScenario() {
suite.Run(s.T(), NewTwoFactorTOTPScenario())
}
func TestPostgresSuite(t *testing.T) {
if testing.Short() {
t.Skip("skipping suite test in short mode")
}
suite.Run(t, NewPostgresSuite())
}
|