1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/bundler/support/artifice/endpoint_500.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
374 B
Ruby
Raw Normal View History

# frozen_string_literal: true
require_relative "../path"
2021-12-22 19:21:36 -05:00
$LOAD_PATH.unshift(*Dir[Spec::Path.base_system_gem_path.join("gems/{artifice,mustermann,rack,tilt,sinatra,ruby2_keywords}-*/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)