aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/helper/stub_test.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-11-12 23:12:38 +0900
committerOphestra <cat@gensokyo.uk>2025-11-12 23:16:13 +0900
commitf347d44c2281f507e3786aa498f634bfa4c92d84 (patch)
treefe85b41d5f6a5e308b87585f46efd64f90221e2b /internal/helper/stub_test.go
parentb5630f6883c874d458d9ae3c666cfb7ae5e3121d (diff)
internal/helper: relocate from helper
This package is ugly and is pending removal only kept alive by xdg-dbus-proxy. Its exported symbols are made available until v0.4.0 where it will be removed for #24. Signed-off-by: Ophestra <cat@gensokyo.uk>
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()) }