pulumi/tests/integration/read/read_dbr/read_dbr_test.go

32 lines
692 B
Go

// Copyright 2016-2018, Pulumi Corporation. All rights reserved.
//go:build (nodejs || all) && !xplatform_acceptance
package ints
import (
"testing"
"github.com/pulumi/pulumi/pkg/v3/testing/integration"
)
// Test that the engine tolerates two deletions of the same URN in the same plan.
//
//nolint:paralleltest // ProgramTest calls t.Parallel()
func TestReadDBR(t *testing.T) {
integration.ProgramTest(t, &integration.ProgramTestOptions{
Dir: "step1",
Dependencies: []string{"@pulumi/pulumi"},
Quick: true,
EditDirs: []integration.EditDir{
{
Dir: "step2",
Additive: true,
},
{
Dir: "step3",
Additive: true,
},
},
})
}