TESTING: Fail cleaner if no domain set (#998)

This commit is contained in:
Tom Limoncelli 2020-12-18 12:14:43 -05:00 committed by GitHub
parent 5cb6c533e6
commit c89f14e926
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -65,6 +65,10 @@ func TestDNSProviders(t *testing.T) {
if provider == nil {
return
}
if domain == "" {
t.Fatal("NO DOMAIN SET! Exiting!")
}
t.Run(domain, func(t *testing.T) {
runTests(t, provider, domain, fails, cfg)
})
@ -255,6 +259,9 @@ func TestDualProviders(t *testing.T) {
if p == nil {
return
}
if domain == "" {
t.Fatal("NO DOMAIN SET! Exiting!")
}
dc := getDomainConfigWithNameservers(t, p, domain)
// clear everything
run := func() {