Ensure setting mode as a string works too

This commit is contained in:
Bryan Helmkamp 2009-01-18 16:25:35 -05:00
parent 00d0d7b438
commit 743d787164
1 changed files with 2 additions and 2 deletions

View File

@ -70,12 +70,12 @@ module Webrat
# Allows setting of webrat's mode, valid modes are:
# :rails, :selenium, :rack, :sinatra, :mechanize, :merb
def mode=(mode)
@mode = mode
@mode = mode.to_sym
# This is a temporary hack to support backwards compatibility
# with Merb 1.0.8 until it's updated to use the new Webrat.configure
# syntax
if @mode.to_s == "merb"
if @mode == :merb
require("webrat/merb_session")
else
require("webrat/#{mode}")