aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/java/com/google/devtools/build/skydoc/testdata/multiple_files_test/input.bzl
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/java/com/google/devtools/build/skydoc/testdata/multiple_files_test/input.bzl')
-rw-r--r--src/test/java/com/google/devtools/build/skydoc/testdata/multiple_files_test/input.bzl18
1 files changed, 13 insertions, 5 deletions
diff --git a/src/test/java/com/google/devtools/build/skydoc/testdata/multiple_files_test/input.bzl b/src/test/java/com/google/devtools/build/skydoc/testdata/multiple_files_test/input.bzl
index efd5ed460c..2c73da21d5 100644
--- a/src/test/java/com/google/devtools/build/skydoc/testdata/multiple_files_test/input.bzl
+++ b/src/test/java/com/google/devtools/build/skydoc/testdata/multiple_files_test/input.bzl
@@ -1,11 +1,15 @@
-load(":dep.bzl", "my_rule_impl")
+load(":testdata/multiple_files_test/dep.bzl", "my_rule_impl")
my_rule = rule(
implementation = my_rule_impl,
doc = "This is my rule. It does stuff.",
attrs = {
- "first": attr.label(mandatory = True, doc = "first my_rule doc string",
- allow_files = True, single_file = True),
+ "first": attr.label(
+ mandatory = True,
+ doc = "first my_rule doc string",
+ allow_files = True,
+ single_file = True,
+ ),
"second": attr.string_dict(mandatory = True),
},
)
@@ -14,8 +18,12 @@ other_rule = rule(
implementation = my_rule_impl,
doc = "This is another rule.",
attrs = {
- "third": attr.label(mandatory = True, doc = "third other_rule doc string",
- allow_files = True, single_file = True),
+ "third": attr.label(
+ mandatory = True,
+ doc = "third other_rule doc string",
+ allow_files = True,
+ single_file = True,
+ ),
"fourth": attr.string_dict(mandatory = True),
},
)