1
0
Fork 0
mirror of https://github.com/sinatra/sinatra synced 2023-03-27 23:18:01 -04:00
sinatra/rack-protection/spec/spec_helper.rb

15 lines
303 B
Ruby
Raw Normal View History

require 'rack/protection'
require 'rack/test'
require 'rack'
2011-06-20 03:16:44 -04:00
Dir[File.expand_path('../support/**/*.rb', __FILE__)].each { |f| require f }
RSpec.configure do |config|
config.expect_with :rspec do |c|
c.syntax = :expect
end
config.include Rack::Test::Methods
config.include SpecHelpers
end