* add DNS record * revamp tests * lint * cleanup * feat dns test * chore: add DNS Record tests * linting * f
25 lines
464 B
Go
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" {
|
|
}
|
|
`
|