hakurei/internal/helper/stub_test.go
Ophestra ca291ac9a1
Some checks failed
Test / Create distribution (push) Successful in 33s
Test / Sandbox (push) Failing after 40s
Test / Sandbox (race detector) (push) Failing after 39s
Test / Hakurei (push) Successful in 3m14s
Test / Hpkg (push) Successful in 4m0s
Test / Hakurei (race detector) (push) Successful in 5m4s
Test / Flake checks (push) Has been skipped
internal/helper: relocate from helper
This package is too 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.

Signed-off-by: Ophestra <cat@gensokyo.uk>
2025-11-12 22:57:08 +09:00

12 lines
201 B
Go

package helper_test
import (
"os"
"testing"
"hakurei.app/container"
"hakurei.app/helper"
)
func TestMain(m *testing.M) { container.TryArgv0(nil); helper.InternalHelperStub(); os.Exit(m.Run()) }