* add DNS record * revamp tests * lint * cleanup * feat dns test * chore: add DNS Record tests * linting * f
11 lines
171 B
Go
11 lines
171 B
Go
package testing
|
|
|
|
import (
|
|
"fmt"
|
|
"regexp"
|
|
)
|
|
|
|
func MissingArgumentErrorRegex(arg string) *regexp.Regexp {
|
|
return regexp.MustCompile(fmt.Sprintf(`%q is required`, arg))
|
|
}
|