github.com/cheshirekow/buildtools@v0.0.0-20200224190056-5d637702fe81/build/testdata/048.build.golden (about) 1 has_sets( 2 name = "empty", 3 labels = {}, 4 ) 5 6 has_sets( 7 name = "one", 8 labels = {"foo"}, 9 ) 10 11 has_sets( 12 name = "one_trailing", 13 labels = {"bar"}, 14 ) 15 16 has_sets( 17 name = "two", 18 labels = { 19 "foo", 20 "bar", 21 }, 22 ) 23 24 has_sets( 25 name = "two_trailing", 26 labels = { 27 "foo", 28 "bar", 29 }, 30 ) 31 32 has_sets( 33 name = "three", 34 labels = { 35 "foo", 36 "bar", 37 "baz", 38 }, 39 ) 40 41 has_sets( 42 name = "three_trailing", 43 labels = { 44 "foo", 45 "bar", 46 "baz", 47 }, 48 )