Files
terraform-provider-unifi/internal/provider/testing/test_helpers_regex.go
Mateusz Filipowicz e7164c0460 feat: add DNS record resource and datasources (#25)
* add DNS record

* revamp tests

* lint

* cleanup

* feat dns test

* chore: add DNS Record tests

* linting

* f
2025-02-26 01:17:59 +01:00

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))
}