aboutsummaryrefslogtreecommitdiffhomepage
path: root/helper/stub_test.go
blob: dc057ac1fdb24f65f6953775e6d71dc2a4bcfed2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package helper_test

import (
	"os"
	"testing"

	"hakurei.app/container"
	"hakurei.app/helper"
	"hakurei.app/internal"
	"hakurei.app/internal/hlog"
)

func TestMain(m *testing.M) {
	container.TryArgv0(hlog.Output{}, hlog.Prepare, internal.InstallOutput)
	helper.InternalHelperStub()
	os.Exit(m.Run())
}