Activity-Relay/main_test.go
2019-03-16 14:36:03 +09:00

20 lines
311 B
Go

package main
import (
"os"
"testing"
"github.com/spf13/viper"
)
func TestMain(m *testing.M) {
viper.Set("actor_pem", "misc/testKey.pem")
viper.Set("relay_domain", "relay.yukimochi.example.org")
initConfig()
// Load Config
code := m.Run()
os.Exit(code)
relayState.RedisClient.FlushAll().Result()
}