From abfc52f46b84c10bbfe3ba3dbcf6bb2fbd964b30 Mon Sep 17 00:00:00 2001 From: Eric Davis Date: Thu, 17 Jun 2010 14:00:13 -0700 Subject: [PATCH] Hook up webrat --- test/test_helper.rb | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/test_helper.rb b/test/test_helper.rb index bd1ed0c..5835fbb 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -3,3 +3,9 @@ require File.expand_path(File.dirname(__FILE__) + '/../../../../test/test_helper # Ensure that we are using the temporary fixture path Engines::Testing.set_fixture_path + +require "webrat" + +Webrat.configure do |config| + config.mode = :rails +end