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