mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
19 lines
545 B
Python
19 lines
545 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "mock",
|
||
|
srcs = [
|
||
|
"doc.go",
|
||
|
"mock.go",
|
||
|
],
|
||
|
importmap = "peridot.resf.org/vendor/github.com/stretchr/testify/mock",
|
||
|
importpath = "github.com/stretchr/testify/mock",
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = [
|
||
|
"//vendor/github.com/davecgh/go-spew/spew",
|
||
|
"//vendor/github.com/pmezard/go-difflib/difflib",
|
||
|
"//vendor/github.com/stretchr/objx",
|
||
|
"//vendor/github.com/stretchr/testify/assert",
|
||
|
],
|
||
|
)
|