aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2008-11-08 22:35:30 -0500
committerJeremy Kemper <jeremy@bitsweat.net>2008-11-08 22:35:30 -0500
commit8a1f91338131c69b88fb32e7f0078cef28421437 (patch)
tree074ac9f5773ffaa48145acbce6a07e307650a89e /actionpack/test
parentace9e533dc820ca11c1c90196678daaaf0f70ae6 (diff)
downloadrails-8a1f91338131c69b88fb32e7f0078cef28421437.tar.gz
rails-8a1f91338131c69b88fb32e7f0078cef28421437.tar.bz2
rails-8a1f91338131c69b88fb32e7f0078cef28421437.zip
Workaround lack of Mocha on 1.9 (hasn't been updated for minitest yet)
Diffstat (limited to 'actionpack/test')
-rw-r--r--actionpack/test/controller/cgi_test.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/actionpack/test/controller/cgi_test.rb b/actionpack/test/controller/cgi_test.rb
index 813171857a..87fbf1a4cd 100644
--- a/actionpack/test/controller/cgi_test.rb
+++ b/actionpack/test/controller/cgi_test.rb
@@ -48,7 +48,8 @@ class BaseCgiTest < Test::Unit::TestCase
# some developers have grown accustomed to using comma in cookie values.
@alt_cookie_fmt_request_hash = {"HTTP_COOKIE"=>"_session_id=c84ace847,96670c052c6ceb2451fb0f2;is_admin=yes"}
@cgi = CGI.new
- @cgi.stubs(:env_table).returns(@request_hash)
+ class << @cgi; attr_accessor :env_table end
+ @cgi.env_table = @request_hash
@request = ActionController::CgiRequest.new(@cgi)
end