13
14 if len(ExtensionToLanguage) == 0 {
15▶ t.Error("Should not be 0")
16 }
17
· · ·
18 if len(LanguageFeatures) == 0 {
19▶ t.Error("Should not be 0")
20 }
21}
· · ·
26
27 if PathDenyList[0] != "testing" {
28▶ t.Error("expected / to be trimmed")
29 }
30
· · ·
39 ConfigureLazy(true)
40 if !isLazy {
41▶ t.Error("isLazy should be true")
42 }
43
· · ·
44 ConfigureLazy(false)
45 if isLazy {
46▶ t.Error("isLazy should be false")
47 }
48}
+ 8 more matches in this file