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

31 lines
629 B
Go

// Copyright 2016-2018, Pulumi Corporation. All rights reserved.
// +build nodejs all
package ints
import (
"testing"
"github.com/pulumi/pulumi/pkg/v3/testing/integration"
)
// Test that the engine handles the replacement of an external resource with a
// owned once gracefully.
func TestReadReplace(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,
},
},
})
}