go.chromium.org/luci@v0.0.0-20240309015107-7cdc2e660f33/lucicfg/testdata/realms/bad_binding_role.star (about) 1 luci.project(name = "proj") 2 luci.realm( 3 name = "realm", 4 bindings = [ 5 luci.binding( 6 roles = "customRole/undefined", 7 users = "a@example.com", 8 ), 9 ], 10 ) 11 12 # Expect errors like: 13 # 14 # Traceback (most recent call last): 15 # //testdata/realms/bad_binding_role.star: in <toplevel> 16 # ... 17 # Error: luci.binding("customRole/undefined") in "roles" refers to undefined luci.custom_role("customRole/undefined")