From 2792e1e427b5aa75da1cae58285a4a17f7a45b47 Mon Sep 17 00:00:00 2001 From: "maul.esel" Date: Thu, 11 Apr 2013 16:51:48 +0200 Subject: [PATCH] fix indentation of test --- test/test_post.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test/test_post.rb b/test/test_post.rb index dfba0758..f8ba8392 100644 --- a/test/test_post.rb +++ b/test/test_post.rb @@ -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("

I can set a custom excerpt with markdown

", @post.excerpt) - end + assert_equal("

I can set a custom excerpt with markdown

", @post.excerpt) + end - end + end end end