mirror of
https://github.com/coder/terraform-provider-envbuilder.git
synced 2025-07-22 19:47:51 +00:00
32 lines
762 B
Go
32 lines
762 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package provider
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/hashicorp/terraform-plugin-testing/helper/resource"
|
|
)
|
|
|
|
func TestAccExampleDataSource(t *testing.T) {
|
|
resource.Test(t, resource.TestCase{
|
|
PreCheck: func() { testAccPreCheck(t) },
|
|
ProtoV6ProviderFactories: testAccProtoV6ProviderFactories,
|
|
Steps: []resource.TestStep{
|
|
// Read testing
|
|
{
|
|
Config: testAccExampleDataSourceConfig,
|
|
Check: resource.ComposeAggregateTestCheckFunc(
|
|
resource.TestCheckResourceAttr("data.scaffolding_example.test", "id", "example-id"),
|
|
),
|
|
},
|
|
},
|
|
})
|
|
}
|
|
|
|
const testAccExampleDataSourceConfig = `
|
|
data "scaffolding_example" "test" {
|
|
configurable_attribute = "example"
|
|
}
|
|
`
|