From eb06cf0d3d73d795c425c5f8ac05dc85e8f0559b Mon Sep 17 00:00:00 2001 From: zachgersh Date: Tue, 4 Jun 2013 07:22:00 -0700 Subject: [PATCH] Adding back the removal of the TEST_DIR. Thanks to sharp eyes. --- features/step_definitions/jekyll_steps.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/features/step_definitions/jekyll_steps.rb b/features/step_definitions/jekyll_steps.rb index cede6bdb..abdf07d3 100644 --- a/features/step_definitions/jekyll_steps.rb +++ b/features/step_definitions/jekyll_steps.rb @@ -4,10 +4,10 @@ Before do Dir.chdir(TEST_DIR) end -#After do -# Dir.chdir(File.expand_path("..", TEST_DIR)) -# FileUtils.rm_rf(TEST_DIR) -#end +After do + Dir.chdir(File.expand_path("..", TEST_DIR)) + FileUtils.rm_rf(TEST_DIR) +end Given /^I have a blank site in "(.*)"$/ do |path| FileUtils.mkdir(path)