...

Source file src/github.com/mattn/goveralls/tester/tester.go

Documentation: github.com/mattn/goveralls/tester

     1  package tester
     2  
     3  import (
     4  	"os"
     5  )
     6  
     7  func GoverallsTester() string {
     8  	s := os.Getenv("GOVERALLS_TESTER")
     9  	if s == "" {
    10  		s = "hello world"
    11  	}
    12  	return s
    13  }
    14  

View as plain text