From 8cc7f06b360f9f2ee577e5268c773468fc7d401f Mon Sep 17 00:00:00 2001 From: Aman Gupta Date: Mon, 7 Mar 2011 18:50:02 -0800 Subject: [PATCH] work around cucumber issue (closes #296) --- features/support/env.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/features/support/env.rb b/features/support/env.rb index 0f513754..b8b64165 100644 --- a/features/support/env.rb +++ b/features/support/env.rb @@ -14,3 +14,6 @@ def run_jekyll(opts = {}) command << " >> /dev/null 2>&1" if opts[:debug].nil? system command end + +# work around "invalid option: --format" cucumber bug (see #296) +Test::Unit.run = true