From: spf13 Date: Sat, 28 Dec 2013 18:44:58 +0000 (-0500) Subject: Allowing empty files (ignored) so you can touch a new file while watching X-Git-Tag: v0.10~76 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=8055838c;p=brevno-suite%2Fhugo Allowing empty files (ignored) so you can touch a new file while watching --- diff --git a/hugolib/page_test.go b/hugolib/page_test.go index a308ecef..78d5797d 100644 --- a/hugolib/page_test.go +++ b/hugolib/page_test.go @@ -169,11 +169,11 @@ func TestDegenerateEmptyPageZeroLengthName(t *testing.T) { func TestDegenerateEmptyPage(t *testing.T) { _, err := ReadFrom(strings.NewReader(EMPTY_PAGE), "test") - if err == nil { - t.Fatalf("Expected ReadFrom to return an error when an empty buffer is passed.") + if err != nil { + t.Fatalf("Empty files should not trigger an error. Should be able to touch a file while watching without erroring out.") } - checkError(t, err, "EOF") + //checkError(t, err, "EOF") } func checkPageTitle(t *testing.T, page *Page, title string) { diff --git a/parser/parse_frontmatter_test.go b/parser/parse_frontmatter_test.go index 87666542..ab7d78eb 100644 --- a/parser/parse_frontmatter_test.go +++ b/parser/parse_frontmatter_test.go @@ -52,7 +52,6 @@ func TestDegenerateCreatePageFrom(t *testing.T) { tests := []struct { content string }{ - {CONTENT_EMPTY}, {CONTENT_MISSING_END_FM_DELIM}, {CONTENT_INCOMPLETE_END_FM_DELIM}, {CONTENT_FM_NO_DOC},