add testdata for tests in //vendor/k8s.io/...

pull/6/head
Mike Danese 2017-04-12 11:18:59 -07:00
parent a05c3c0efd
commit 981dd8dc66
2 changed files with 9 additions and 0 deletions

View File

@ -11,6 +11,12 @@ load(
go_test(
name = "go_default_test",
srcs = ["x509_test.go"],
data = [
"testdata/client-expired.pem",
"testdata/client-valid.pem",
"testdata/intermediate.pem",
"testdata/root.pem",
],
library = ":go_default_library",
tags = ["automanaged"],
deps = [

View File

@ -23,5 +23,8 @@ go_library(
"io.go",
"pem.go",
],
data = [
"testdata/dontUseThisKey.pem",
],
tags = ["automanaged"],
)