2020-08-13 13:57:29 +00:00
|
|
|
load("@io_bazel_rules_go//go:def.bzl", "go_test")
|
2020-07-15 20:10:54 +00:00
|
|
|
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
|
|
|
|
go_library(
|
|
|
|
name = "go_default_library",
|
|
|
|
srcs = ["assertions.go"],
|
|
|
|
importpath = "github.com/prysmaticlabs/prysm/shared/testutil/assertions",
|
|
|
|
visibility = ["//visibility:public"],
|
2020-10-03 01:51:58 +00:00
|
|
|
deps = [
|
|
|
|
"@com_github_d4l3k_messagediff//:go_default_library",
|
|
|
|
"@com_github_sirupsen_logrus//hooks/test:go_default_library",
|
|
|
|
],
|
2020-07-15 20:10:54 +00:00
|
|
|
)
|
2020-08-13 13:57:29 +00:00
|
|
|
|
|
|
|
go_test(
|
|
|
|
name = "go_default_test",
|
|
|
|
srcs = ["assertions_test.go"],
|
|
|
|
deps = [
|
2020-11-10 03:01:56 +00:00
|
|
|
":go_default_library",
|
2020-08-13 13:57:29 +00:00
|
|
|
"//shared/testutil/assert:go_default_library",
|
|
|
|
"//shared/testutil/require:go_default_library",
|
2020-09-28 21:32:58 +00:00
|
|
|
"@com_github_prysmaticlabs_ethereumapis//eth/v1alpha1:go_default_library",
|
2020-08-13 16:22:25 +00:00
|
|
|
"@com_github_sirupsen_logrus//:go_default_library",
|
|
|
|
"@com_github_sirupsen_logrus//hooks/test:go_default_library",
|
2020-08-13 13:57:29 +00:00
|
|
|
],
|
|
|
|
)
|