Sinatra now provides sensible options for testing

In the lastest release, 0.9.1:

* Set sensible defaults on Default for test env [1]
  5a33a9586f

* Set :environment to :test in TestHarness
  9af37724e0

* Set :environment to :test when Sinatra::Test is included
  93b19a3492

[1] Only Sinatra::Default provides special options for testing. If you subclass
    Sinatra::Base, you'll have to set them yourself.

foo
This commit is contained in:
Simon Rozet 2009-03-08 23:30:17 +01:00
parent 4e07f5b654
commit 90baf3311c
2 changed files with 2 additions and 14 deletions

View File

@ -10,16 +10,7 @@ module Webrat
def initialize(context = nil)
super(context)
app =
if context.respond_to?(:app)
context.app
else
Sinatra::Application.tap { |app|
app.set :environment, :test
app.disable :run, :reload
}
end
app = context.respond_to?(:app) ? context.app : Sinatra::Application
@browser = Sinatra::TestHarness.new(app)
end

View File

@ -3,10 +3,7 @@ require File.dirname(__FILE__) + "/../modular_app"
class MyModularAppTest < Test::Unit::TestCase
def app
MyModularApp.tap { |app|
app.disable :run, :reload
app.set :environment, :test
}
MyModularApp
end
def test_it_works