pulumi/tests/integration/recreate_resource_check/resource_recreate_check_test.go

27 lines
653 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 does not consider old inputs when calling Check during re-creation of
// a resource that was deleted due to a dependency on a DBR-replaced resource.
func TestResourceRecreateCheck(t *testing.T) {
integration.ProgramTest(t, &integration.ProgramTestOptions{
Dir: "step1",
Dependencies: []string{"@pulumi/pulumi"},
Quick: true,
EditDirs: []integration.EditDir{
{
Dir: "step2",
Additive: true,
},
},
})
}