Skip to content

Commit

Permalink
add test scaffolding
Browse files Browse the repository at this point in the history
  • Loading branch information
fairclothjm committed Dec 19, 2022
1 parent 619c4b4 commit 445b004
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions vault/data_source_raft_autopilot_state_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
package vault

import (
"testing"

"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource"

"github.com/hashicorp/terraform-provider-vault/testutil"
)

func TestDataSourceRaftAutoPilotState(t *testing.T) {
resource.Test(t, resource.TestCase{
Providers: testProviders,
PreCheck: func() { testutil.TestAccPreCheck(t) },
Steps: []resource.TestStep{
{
Config: "",
Check: nil,
},
},
})
}

0 comments on commit 445b004

Please sign in to comment.