github.com/sercand/please@v13.4.0+incompatible/test/subrepo_subinclude/BUILD (about)

     1  subinclude("@pleasings//go:go_bindata")
     2  
     3  go_bindata(
     4      name = "embed",
     5      srcs = ["test.txt"],
     6      package = "test",  # This argument doesn't exist on the version in our repo.
     7      prefix = "$PKG",
     8  )
     9  
    10  go_test(
    11      name = "subrepo_subinclude_test",
    12      srcs = [
    13          "subrepo_test.go",
    14          ":embed",
    15      ],
    16      deps = ["//third_party/go:testify"],
    17  )