mirror of
https://github.com/imgproxy/imgproxy.git
synced 2024-11-24 08:12:38 +02:00
20 lines
244 B
Go
20 lines
244 B
Go
package main
|
|
|
|
import (
|
|
"github.com/stretchr/testify/suite"
|
|
)
|
|
|
|
type MainTestSuite struct {
|
|
suite.Suite
|
|
|
|
oldConf config
|
|
}
|
|
|
|
func (s *MainTestSuite) SetupTest() {
|
|
s.oldConf = conf
|
|
}
|
|
|
|
func (s *MainTestSuite) TearDownTest() {
|
|
conf = s.oldConf
|
|
}
|