fix indentation of test

This commit is contained in:
maul.esel 2013-04-11 16:51:48 +02:00
parent 0113fea7a1
commit 2792e1e427
1 changed files with 6 additions and 6 deletions

View File

@ -323,17 +323,17 @@ class TestPost < Test::Unit::TestCase
context "with custom excerpt" do
setup do
file = "2013-04-11-custom-excerpt.markdown"
@post.process(file)
file = "2013-04-11-custom-excerpt.markdown"
@post.process(file)
@post.read_yaml(@source, file)
@post.transform
end
end
should "use custom excerpt" do
assert_equal("<p>I can set a custom excerpt with <em>markdown</em></p>", @post.excerpt)
end
assert_equal("<p>I can set a custom excerpt with <em>markdown</em></p>", @post.excerpt)
end
end
end
end
end