go-jsonnet/internal/testutils/BUILD.bazel
Stanisław Barzowski 3a245f70d4 Preparation for linter.
* Extract some test utilities to a separate package.
* Rename some test utilities.
* Internally expose DirectChildren.
* Add LocationRange to some non-expr AST parts,
  such as local binds, parameters and object fields.
* Add end-of-file-reached testcases.
2020-03-15 14:38:40 +01:00

10 lines
317 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "go_default_library",
srcs = ["test_utils.go"],
importpath = "github.com/google/go-jsonnet/internal/testutils",
visibility = ["//:__subpackages__"],
deps = ["@com_github_sergi_go_diff//diffmatchpatch:go_default_library"],
)