main_test.go 196 B

1234567891011121314
  1. // Package yomo test main.s
  2. package yomo
  3. import (
  4. "context"
  5. "os"
  6. "testing"
  7. )
  8. func TestMain(m *testing.M) {
  9. go RunZipper(context.TODO(), "test/config.yaml")
  10. code := m.Run()
  11. os.Exit(code)
  12. }