mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
19 lines
387 B
Ruby
19 lines
387 B
Ruby
|
# frozen_string_literal: true
|
||
|
require File.expand_path("../../path.rb", __FILE__)
|
||
|
include Spec::Path
|
||
|
|
||
|
$LOAD_PATH.unshift(*Dir[Spec::Path.base_system_gems.join("gems/{artifice,rack,tilt,sinatra}-*/lib")].map(&:to_s))
|
||
|
|
||
|
require "artifice"
|
||
|
require "sinatra/base"
|
||
|
|
||
|
Artifice.deactivate
|
||
|
|
||
|
class Endpoint500 < Sinatra::Base
|
||
|
before do
|
||
|
halt 500
|
||
|
end
|
||
|
end
|
||
|
|
||
|
Artifice.activate_with(Endpoint500)
|