forked from security/hakurei
This frees all container instances of side effects. Signed-off-by: Ophestra <cat@gensokyo.uk>
16 lines
202 B
Go
16 lines
202 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())
|
|
}
|