14
15 if ext != "css" {
16▶ t.Error("Expected css got", ext)
17 }
18 AllowListExtensions = []string{}
· · ·
25
26 if x != "" || y == nil {
27▶ t.Error("Expected no match got", x)
28 }
29}
· · ·
48
49 if x != "Perl" || y != nil {
50▶ t.Error("Expected Perl match got", x, "for", c)
51 }
52 }
· · ·
65
66 if x != "PHP" || y != nil {
67▶ t.Error("Expected PHP match got", x)
68 }
69 }
· · ·
83
84 if x != "Python" || y != nil {
85▶ t.Error("Expected Python match got", x)
86 }
87 }
+ 31 more matches in this file