From b2ab24583569623ddc0681be56bcfac31fa89754 Mon Sep 17 00:00:00 2001 From: Dane Harrigan Date: Sat, 4 Jun 2011 21:35:04 -0400 Subject: [PATCH] gave the assertion a failure message --- features/step_definitions/jekyll_steps.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/step_definitions/jekyll_steps.rb b/features/step_definitions/jekyll_steps.rb index 27239bd5..29abccec 100644 --- a/features/step_definitions/jekyll_steps.rb +++ b/features/step_definitions/jekyll_steps.rb @@ -121,7 +121,7 @@ When /^I change "(.*)" to contain "(.*)"$/ do |file, text| end Then /^the (.*) directory should exist$/ do |dir| - assert File.directory?(dir) + assert File.directory?(dir), "The directory \"#{dir}\" does not exist" end Then /^I should see "(.*)" in "(.*)"$/ do |text, file|