Skip to content

Instantly share code, notes, and snippets.

@madflow
Created June 25, 2024 07:01
Show Gist options
  • Save madflow/220af82bbe336829a2d1f8bf251085f4 to your computer and use it in GitHub Desktop.
Save madflow/220af82bbe336829a2d1f8bf251085f4 to your computer and use it in GitHub Desktop.
Go Testing Init
package testing
import (
"os"
"path"
"runtime"
)
func init() {
_, filename, _, _ := runtime.Caller(0)
dir := path.Join(path.Dir(filename), "..")
err := os.Chdir(dir)
if err != nil {
panic(err)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment