fix tests that broke when 2nd arg was added to Post#add_layout

This commit is contained in:
Tom Preston-Werner 2008-11-05 17:04:56 -08:00
parent 574637abc8
commit d8bdb6d366
1 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ class TestPost < Test::Unit::TestCase
def test_add_layout
p = Post.new(File.join(File.dirname(__FILE__), *%w[source posts]), "2008-10-18-foo-bar.textile")
layouts = {"default" => "<<< {{ content }} >>>"}
p.add_layout(layouts)
p.add_layout(layouts, {"site" => {"posts" => []}})
assert_equal "<<< <h1>Foo Bar</h1>\n\n\n\t<p>Best <strong>post</strong> ever</p> >>>", p.output
end
@ -55,7 +55,7 @@ class TestPost < Test::Unit::TestCase
p = Post.new(File.join(File.dirname(__FILE__), *%w[source posts]), "2008-10-18-foo-bar.textile")
layouts = {"default" => "<<< {{ content }} >>>"}
p.add_layout(layouts)
p.add_layout(layouts, {"site" => {"posts" => []}})
p.write(dest_dir)
end
end