1
0
mirror of https://github.com/gohugoio/hugo.git synced 2024-05-11 05:54:58 +00:00

Allow forward slashes in Hugo new on Windows

Fixes  #1133
This commit is contained in:
bep
2015-05-12 18:12:58 +02:00
parent be72f234f8
commit be3a3506c4
2 changed files with 28 additions and 4 deletions

14
commands/new_test.go Normal file
View File

@@ -0,0 +1,14 @@
package commands
import (
"github.com/stretchr/testify/assert"
"path/filepath"
"testing"
)
// Issue #1133
func TestNewContentPathSectionWithForwardSlashes(t *testing.T) {
p, s := newContentPathSection("/post/new.md")
assert.Equal(t, filepath.FromSlash("/post/new.md"), p)
assert.Equal(t, "post", s)
}