mirror of https://github.com/pulumi/pulumi.git
19 lines
463 B
Python
19 lines
463 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_test")
|
|
|
|
go_test(
|
|
name = "batchyaml_test",
|
|
srcs = ["gen_program_test.go"],
|
|
data = [
|
|
"//pkg/codegen/testing/test:codegen_testdata",
|
|
"//sdk:sdk_files",
|
|
],
|
|
deps = [
|
|
"//pkg/codegen",
|
|
"//pkg/codegen/go",
|
|
"//pkg/codegen/pcl",
|
|
"//pkg/codegen/testing/test",
|
|
"@com_github_hashicorp_hcl_v2//:hcl",
|
|
"@com_github_stretchr_testify//assert",
|
|
],
|
|
)
|