aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/helper/stub_test.go
blob: 4b438a5be550406156beca9aff9324fa6b3e7d94 (plain)
1
2
3
4
5
6
7
8
9
10
11
package helper_test

import (
	"os"
	"testing"

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

func TestMain(m *testing.M) { container.TryArgv0(nil); helper.InternalHelperStub(); os.Exit(m.Run()) }