aboutsummaryrefslogtreecommitdiffstats
path: root/spec/lib/fcgi_fixes_spec.rb
blob: edc1c9d988a2907cd319bdda64eb8aa2d1d5871a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# This is a test of the monkey patches in lib/fcgi_fixes.rb

require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')

require 'railties/lib/fcgi_handler.rb'

describe "when doing FastCGI" do

  it "should have fixed dynamic FastCGI bug" do
    RailsFCGIHandler::SIGNALS['TERM'].should == :exit
  end

end