Files
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

25 lines
464 B
Go

package acctest
import (
"github.com/hashicorp/terraform-plugin-testing/helper/resource"
"testing"
)
func TestAccDataAPGroup_default(t *testing.T) {
AcceptanceTest(t, AcceptanceTestCase{
Steps: []resource.TestStep{
{
Config: testAccDataAPGroupConfig_default,
Check: resource.ComposeTestCheckFunc(
// testCheckNetworkExists(t, "name"),
),
},
},
})
}
const testAccDataAPGroupConfig_default = `
data "unifi_ap_group" "default" {
}
`