c31470dafb
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
14 lines
172 B
Go
14 lines
172 B
Go
package form
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
log.SetLevel(log.DebugLevel)
|
|
code := m.Run()
|
|
os.Exit(code)
|
|
}
|