blob: 1c5cb94f6c27eadb9760b6e82f5f35ecbd8606e9 [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "testutils",
srcs = ["git_builder.go"],
importpath = "go.skia.org/infra/go/git/testutils",
visibility = ["//visibility:public"],
deps = [
"//go/exec",
"//go/git/git_common",
"//go/sktest",
"//go/testutils",
"@com_github_stretchr_testify//require",
],
)
go_test(
name = "testutils_test",
srcs = ["git_builder_test.go"],
embed = [":testutils"],
deps = [
"//go/exec",
"//go/git/git_common",
"//go/testutils/unittest",
"@com_github_stretchr_testify//require",
],
)