1
0
Fork 0
mirror of https://github.com/sinatra/sinatra synced 2023-03-27 23:18:01 -04:00
sinatra/test/helper.rb
blake.mizerany@gmail.com 3b491e00ab * custom 404
* bug fixes
* refactoring
2007-09-11 01:14:18 +00:00

16 lines
332 B
Ruby

require File.dirname(__FILE__) + '/../lib/sinatra'
%w(mocha test/spec).each do |library|
begin
require library
rescue
STDERR.puts "== Sinatra's tests need #{library} to run."
end
end
Sinatra::Server.running = true
Sinatra::Options.set_environment :test
class Test::Unit::TestCase
include Sinatra::TestMethods
end