peridot/vendor/github.com/stretchr/testify/assert/BUILD.bazel
2022-07-07 22:13:21 +02:00

25 lines
711 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "assert",
srcs = [
"assertion_compare.go",
"assertion_format.go",
"assertion_forward.go",
"assertion_order.go",
"assertions.go",
"doc.go",
"errors.go",
"forward_assertions.go",
"http_assertions.go",
],
importmap = "peridot.resf.org/vendor/github.com/stretchr/testify/assert",
importpath = "github.com/stretchr/testify/assert",
visibility = ["//visibility:public"],
deps = [
"//vendor/github.com/davecgh/go-spew/spew",
"//vendor/github.com/pmezard/go-difflib/difflib",
"//vendor/gopkg.in/yaml.v3:yaml_v3",
],
)