14 lines
239 B
Go
14 lines
239 B
Go
package httpmock
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
var envVarName = "GONOMOCKS"
|
|
|
|
// Disabled allows to test whether httpmock is enabled or not. It
|
|
// depends on GONOMOCKS environment variable.
|
|
func Disabled() bool {
|
|
return os.Getenv(envVarName) != ""
|
|
}
|