aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/helper/stub_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/helper/stub_test.go')
-rw-r--r--internal/helper/stub_test.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/internal/helper/stub_test.go b/internal/helper/stub_test.go
new file mode 100644
index 00000000..4b438a5b
--- /dev/null
+++ b/internal/helper/stub_test.go
@@ -0,0 +1,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()) }