aboutsummaryrefslogtreecommitdiff
path: root/tests/bcr/test.go
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bcr/test.go')
-rw-r--r--tests/bcr/test.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/bcr/test.go b/tests/bcr/test.go
new file mode 100644
index 00000000..910c06be
--- /dev/null
+++ b/tests/bcr/test.go
@@ -0,0 +1,11 @@
+package lib
+
+import (
+ "testing"
+)
+
+func TestName(t *testing.T) {
+ if Name() != "bzlmod" {
+ t.Fail()
+ }
+}