Skip to content

Commit

Permalink
Add update test
Browse files Browse the repository at this point in the history
  • Loading branch information
mbfrahry committed Jun 21, 2024
1 parent c260e8f commit 3996f84
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,20 @@ func TestAccVirtualNetworkDnsServers_update(t *testing.T) {
),
},
data.ImportStep(),
{
Config: r.update(data),
Check: acceptance.ComposeTestCheckFunc(
check.That(data.ResourceName).ExistsInAzure(r),
),
},
data.ImportStep(),
{
Config: r.basic(data),
Check: acceptance.ComposeTestCheckFunc(
check.That(data.ResourceName).ExistsInAzure(r),
),
},
data.ImportStep(),
})
}

Expand Down

0 comments on commit 3996f84

Please sign in to comment.