pulumi/pkg/codegen/python/gen_program_test.go
Komal fddeea8a88
[codegen] Unify program codegen testing (#7657)
* ProgramGen test driver

* Refactor to avoid exporting hcl2 entities
2021-07-27 18:00:39 -07:00

15 lines
284 B
Go

package python
import (
"path/filepath"
"testing"
"github.com/pulumi/pulumi/pkg/v3/codegen/internal/test"
)
var testdataPath = filepath.Join("..", "internal", "test", "testdata")
func TestGenerateProgram(t *testing.T) {
test.TestProgramCodegen(t, "python", GenerateProgram)
}