2013-09-03 18:38:20 -04:00
|
|
|
package bundle
|
2013-08-12 16:57:47 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2013-09-01 15:02:05 -04:00
|
|
|
const (
|
|
|
|
win_base = "c:\\a\\windows\\path\\layout"
|
|
|
|
win_path = "c:\\a\\windows\\path\\layout\\sub1\\index.html"
|
|
|
|
)
|
|
|
|
|
2013-08-12 16:57:47 -04:00
|
|
|
func TestTemplatePathSeperator(t *testing.T) {
|
2013-09-01 15:02:05 -04:00
|
|
|
tmpl := new(GoHtmlTemplate)
|
|
|
|
if name := tmpl.generateTemplateNameFrom(win_base, win_path); name != "sub1/index.html" {
|
2013-08-12 16:57:47 -04:00
|
|
|
t.Fatalf("Template name incorrect. Expected: %s, Got: %s", "sub1/index.html", name)
|
|
|
|
}
|
|
|
|
}
|