From e5bf7b7207d69daf1c3537797aeeab2642f19514 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Fri, 1 Apr 2011 15:44:22 -0700 Subject: drop Rails 2.3.x tests They were transitionary releases and the logic to deal with them and Rack versioning was too much overhead. --- .../app-2.3.8/app/controllers/foo_controller.rb | 36 ---------------------- 1 file changed, 36 deletions(-) delete mode 100644 test/rails/app-2.3.8/app/controllers/foo_controller.rb (limited to 'test/rails/app-2.3.8/app/controllers/foo_controller.rb') diff --git a/test/rails/app-2.3.8/app/controllers/foo_controller.rb b/test/rails/app-2.3.8/app/controllers/foo_controller.rb deleted file mode 100644 index 54ca1ed..0000000 --- a/test/rails/app-2.3.8/app/controllers/foo_controller.rb +++ /dev/null @@ -1,36 +0,0 @@ -# -*- encoding: binary -*- - -require 'digest/sha1' -class FooController < ApplicationController - def index - render :text => "FOO\n" - end - - def xcookie - cookies["foo"] = "cookie-#$$-#{session[:gotta_use_the_session_in_2_3]}" - render :text => "" - end - - def xnotice - flash[:notice] = "session #$$" - render :text => "" - end - - def xpost - if request.post? - digest = Digest::SHA1.new - out = "params: #{params.inspect}\n" - if file = params[:file] - loop do - buf = file.read(4096) or break - digest.update(buf) - end - out << "sha1: #{digest.to_s}\n" - end - headers['content-type'] = 'text/plain' - render :text => out - else - render :status => 403, :text => "need post\n" - end - end -end -- cgit v1.2.3-24-ge0c7