Commit e039577d authored by Karthic Rao's avatar Karthic Rao

export of variables undone

parent 9995466a
......@@ -39,11 +39,11 @@ func templatesParse(c *Controller) ([]templates.Rule, error) {
// Any remaining arguments are extensions
rule.Extensions = c.RemainingArgs()
if len(rule.Extensions) == 0 {
rule.Extensions = DefaultTemplateExtensions
rule.Extensions = defaultTemplateExtensions
}
} else {
rule.Path = DefaultTemplatePath
rule.Extensions = DefaultTemplateExtensions
rule.Path = defaultTemplatePath
rule.Extensions = defaultTemplateExtensions
}
for _, ext := range rule.Extensions {
......@@ -56,6 +56,6 @@ func templatesParse(c *Controller) ([]templates.Rule, error) {
return rules, nil
}
const DefaultTemplatePath = "/"
const defaultTemplatePath = "/"
var DefaultTemplateExtensions = []string{".html", ".htm", ".tmpl", ".tpl", ".txt"}
var defaultTemplateExtensions = []string{".html", ".htm", ".tmpl", ".tpl", ".txt"}
......@@ -27,14 +27,14 @@ func TestTemplates(t *testing.T) {
t.Fatalf("Expected handler to be type Templates, got: %#v", handler)
}
if myHandler.Rules[0].Path != DefaultTemplatePath {
if myHandler.Rules[0].Path != defaultTemplatePath {
t.Errorf("Expected / as the default Path")
}
if fmt.Sprint(myHandler.Rules[0].Extensions) != fmt.Sprint(DefaultTemplateExtensions) {
t.Errorf("Expected %v to be the Default Extensions", DefaultTemplateExtensions)
if fmt.Sprint(myHandler.Rules[0].Extensions) != fmt.Sprint(defaultTemplateExtensions) {
t.Errorf("Expected %v to be the Default Extensions", defaultTemplateExtensions)
}
var indexFiles []string
for _, extension := range DefaultTemplateExtensions {
for _, extension := range defaultTemplateExtensions {
indexFiles = append(indexFiles, "index"+extension)
}
if fmt.Sprint(myHandler.Rules[0].IndexFiles) != fmt.Sprint(indexFiles) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment