Skip to content

Instantly share code, notes, and snippets.

@a-know
Last active September 10, 2018 12:00
Show Gist options
  • Save a-know/2f99e786ea3828d54eb193c8d3d850c6 to your computer and use it in GitHub Desktop.
Save a-know/2f99e786ea3828d54eb193c8d3d850c6 to your computer and use it in GitHub Desktop.
Example for testerator
package handlers
import (
"fmt"
"os"
"testing"
"github.com/favclip/testerator"
)
func TestMain(m *testing.M) {
_, _, err := testerator.SpinUp()
if err != nil {
fmt.Printf(err.Error())
os.Exit(1)
}
status := m.Run()
err = testerator.SpinDown()
if err != nil {
fmt.Printf(err.Error())
os.Exit(1)
}
os.Exit(status)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment