ref: 72ba6d633d2a24d03bf16d927d7b87a20c28fda6
dir: /template/bundle/path_seperators_windows_test.go/
package bundle
import (
"testing"
)
const (
win_base = "c:\\a\\windows\\path\\layout"
win_path = "c:\\a\\windows\\path\\layout\\sub1\\index.html"
)
func TestTemplatePathSeperator(t *testing.T) {
tmpl := new(GoHtmlTemplate)
if name := tmpl.generateTemplateNameFrom(win_base, win_path); name != "sub1/index.html" {
t.Fatalf("Template name incorrect. Expected: %s, Got: %s", "sub1/index.html", name)
}
}