fix tests that broke when 2nd arg was added to Post#add_layout
This commit is contained in:
parent
574637abc8
commit
d8bdb6d366
|
@ -45,7 +45,7 @@ class TestPost < Test::Unit::TestCase
|
||||||
def test_add_layout
|
def test_add_layout
|
||||||
p = Post.new(File.join(File.dirname(__FILE__), *%w[source posts]), "2008-10-18-foo-bar.textile")
|
p = Post.new(File.join(File.dirname(__FILE__), *%w[source posts]), "2008-10-18-foo-bar.textile")
|
||||||
layouts = {"default" => "<<< {{ content }} >>>"}
|
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
|
assert_equal "<<< <h1>Foo Bar</h1>\n\n\n\t<p>Best <strong>post</strong> ever</p> >>>", p.output
|
||||||
end
|
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")
|
p = Post.new(File.join(File.dirname(__FILE__), *%w[source posts]), "2008-10-18-foo-bar.textile")
|
||||||
layouts = {"default" => "<<< {{ content }} >>>"}
|
layouts = {"default" => "<<< {{ content }} >>>"}
|
||||||
p.add_layout(layouts)
|
p.add_layout(layouts, {"site" => {"posts" => []}})
|
||||||
p.write(dest_dir)
|
p.write(dest_dir)
|
||||||
end
|
end
|
||||||
end
|
end
|
Loading…
Reference in New Issue