mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-30 15:06:31 +00:00
eb192049b8
* create a testing db method that can be used with the new database interface * lint * lint * PR feedback * Update setup_db.go
24 lines
787 B
Python
24 lines
787 B
Python
package(default_testonly = True)
|
|
|
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"beacon_service_mock.go",
|
|
"db_test_util.go",
|
|
"validator_service_mock.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/beacon-chain/internal",
|
|
visibility = ["//beacon-chain:__subpackages__"],
|
|
deps = [
|
|
"//beacon-chain/db:go_default_library",
|
|
"//proto/beacon/rpc/v1:go_default_library",
|
|
"//proto/eth/v1alpha1:go_default_library",
|
|
"//shared/testutil:go_default_library",
|
|
"@com_github_gogo_protobuf//types:go_default_library",
|
|
"@com_github_golang_mock//gomock:go_default_library",
|
|
"@org_golang_google_grpc//metadata:go_default_library",
|
|
],
|
|
)
|