mirror of
https://github.com/imgproxy/imgproxy.git
synced 2025-01-23 11:14:48 +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
|
||
|
}
|