forked from rosa/hakurei
There is generally no use case where any setup is required before init, and requiring the explicit function call is error-prone and unnecessary. It also causes trouble with packages using a similar trick. This change moves argv0 check early and makes it an import side effect. The stub will be removed in v0.5. Signed-off-by: Ophestra <cat@gensokyo.uk>
11 lines
158 B
Go
11 lines
158 B
Go
package dbus_test
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"hakurei.app/internal/helper"
|
|
)
|
|
|
|
func TestMain(m *testing.M) { helper.InternalHelperStub(); os.Exit(m.Run()) }
|