URI: 
       Allowing empty files (ignored) so you can touch a new file while watching - hugo - [fork] hugo port for 9front
  HTML git clone git@git.drkhsh.at/hugo.git
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
   DIR commit 8055838c700d9e8b77ec1dafeda5ecaef2dab2c2
   DIR parent 1c60d5bf2027815fda31d7fa9c1c98033a3c614e
  HTML Author: spf13 <steve.francia@gmail.com>
       Date:   Sat, 28 Dec 2013 13:44:58 -0500
       
       Allowing empty files (ignored) so you can touch a new file while watching
       
       Diffstat:
         M hugolib/page_test.go                |       6 +++---
         M parser/parse_frontmatter_test.go    |       1 -
       
       2 files changed, 3 insertions(+), 4 deletions(-)
       ---
   DIR diff --git 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) {
   DIR diff --git 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},