mirror of
https://github.com/sinatra/sinatra
synced 2023-03-27 23:18:01 -04:00
ff0d068687
See <http://github.com/citrusbyte/contest> for more info. The contest.rb file is included under the test/ directory.
59 lines
1.3 KiB
Ruby
59 lines
1.3 KiB
Ruby
begin
|
|
require 'rack'
|
|
rescue LoadError
|
|
require 'rubygems'
|
|
require 'rack'
|
|
end
|
|
|
|
testdir = File.dirname(__FILE__)
|
|
$LOAD_PATH.unshift testdir unless $LOAD_PATH.include?(testdir)
|
|
|
|
libdir = File.dirname(File.dirname(__FILE__)) + '/lib'
|
|
$LOAD_PATH.unshift libdir unless $LOAD_PATH.include?(libdir)
|
|
|
|
require 'contest'
|
|
require 'sinatra/test'
|
|
|
|
class Sinatra::Base
|
|
# Allow assertions in request context
|
|
include Test::Unit::Assertions
|
|
end
|
|
|
|
Sinatra::Base.set :environment, :test
|
|
|
|
class Test::Unit::TestCase
|
|
include Sinatra::Test
|
|
|
|
class << self
|
|
alias_method :it, :test
|
|
end
|
|
|
|
# Sets up a Sinatra::Base subclass defined with the block
|
|
# given. Used in setup or individual spec methods to establish
|
|
# the application.
|
|
def mock_app(base=Sinatra::Base, &block)
|
|
@app = Sinatra.new(base, &block)
|
|
end
|
|
|
|
def restore_default_options
|
|
Sinatra::Default.set(
|
|
:environment => :development,
|
|
:raise_errors => Proc.new { test? },
|
|
:show_exceptions => Proc.new { development? },
|
|
:dump_errors => true,
|
|
:sessions => false,
|
|
:logging => Proc.new { ! test? },
|
|
:methodoverride => true,
|
|
:static => true,
|
|
:run => Proc.new { ! test? }
|
|
)
|
|
end
|
|
end
|
|
|
|
# Do not output warnings for the duration of the block.
|
|
def silence_warnings
|
|
$VERBOSE, v = nil, $VERBOSE
|
|
yield
|
|
ensure
|
|
$VERBOSE = v
|
|
end
|