1package lib 2 3import ( 4 "testing" 5) 6 7func TestName(t *testing.T) { 8 if Name() != "bzlmod" { 9 t.Fail() 10 } 11} 12