mirror of https://github.com/kubernetes/kops.git
24 lines
735 B
Python
24 lines
735 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"assertion_format.go",
|
|
"assertion_forward.go",
|
|
"assertion_order.go",
|
|
"assertions.go",
|
|
"doc.go",
|
|
"errors.go",
|
|
"forward_assertions.go",
|
|
"http_assertions.go",
|
|
],
|
|
importmap = "k8s.io/kops/vendor/github.com/stretchr/testify/assert",
|
|
importpath = "github.com/stretchr/testify/assert",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//vendor/github.com/davecgh/go-spew/spew:go_default_library",
|
|
"//vendor/github.com/pmezard/go-difflib/difflib:go_default_library",
|
|
"//vendor/gopkg.in/yaml.v2:go_default_library",
|
|
],
|
|
)
|