15
16 if ext != "css" {
17▶ t.Error("Expected css got", ext)
18 }
19 AllowListExtensions = []string{}
· · ·
26
27 if x != "" || y == nil {
28▶ t.Error("Expected no match got", x)
29 }
30
· · ·
32
33 if x != "" || y == nil {
34▶ t.Error("Expected no match got", x)
35 }
36}
· · ·
55
56 if x != "Perl" || y != nil {
57▶ t.Error("Expected Perl match got", x, "for", c)
58 }
59 }
· · ·
72
73 if x != "PHP" || y != nil {
74▶ t.Error("Expected PHP match got", x)
75 }
76 }
+ 32 more matches in this file