mirror of
https://github.com/x-motemen/ghq.git
synced 2026-09-10 07:26:27 -04:00
16 lines
194 B
Go
16 lines
194 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/Songmu/gitconfig"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
teardown := gitconfig.WithConfig(nil, "")
|
|
code := m.Run()
|
|
teardown()
|
|
os.Exit(code)
|
|
}
|