* add DNS record * revamp tests * lint * cleanup * feat dns test * chore: add DNS Record tests * linting * f
27 lines
500 B
Go
27 lines
500 B
Go
package acctest
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/hashicorp/terraform-plugin-testing/helper/resource"
|
|
)
|
|
|
|
func TestAccDataUserGroup_default(t *testing.T) {
|
|
AcceptanceTest(t, AcceptanceTestCase{
|
|
// TODO: CheckDestroy: ,
|
|
Steps: []resource.TestStep{
|
|
{
|
|
Config: testAccDataUserGroupConfig_default,
|
|
Check: resource.ComposeTestCheckFunc(
|
|
// testCheckNetworkExists(t, "name"),
|
|
),
|
|
},
|
|
},
|
|
})
|
|
}
|
|
|
|
const testAccDataUserGroupConfig_default = `
|
|
data "unifi_user_group" "default" {
|
|
}
|
|
`
|