aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/testing
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2009-04-26 11:16:14 -0500
committerJoshua Peek <josh@joshpeek.com>2009-04-26 11:16:14 -0500
commit5ea8d401569323a10592d68d29b293c1ae131a8b (patch)
tree7acb2244c4061e03db5c64c05377be8067350bed /actionpack/lib/action_controller/testing
parent5352a2417b9f6297d16a6baefd1994be4d1e4a12 (diff)
downloadrails-5ea8d401569323a10592d68d29b293c1ae131a8b.tar.gz
rails-5ea8d401569323a10592d68d29b293c1ae131a8b.tar.bz2
rails-5ea8d401569323a10592d68d29b293c1ae131a8b.zip
Deprecate response.redirect_url_match?, use assert_match instead.
Diffstat (limited to 'actionpack/lib/action_controller/testing')
-rw-r--r--actionpack/lib/action_controller/testing/process.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/actionpack/lib/action_controller/testing/process.rb b/actionpack/lib/action_controller/testing/process.rb
index 05b756fa4d..2ad0579a30 100644
--- a/actionpack/lib/action_controller/testing/process.rb
+++ b/actionpack/lib/action_controller/testing/process.rb
@@ -157,6 +157,7 @@ module ActionController #:nodoc:
# to the "real" CgiResponse class in integration tests.
module TestResponseBehavior #:nodoc:
def redirect_url_match?(pattern)
+ ::ActiveSupport::Deprecation.warn("response.redirect_url_match? is deprecated. Use assert_match(/foo/, response.redirect_url) instead", caller)
return false if redirect_url.nil?
p = Regexp.new(pattern) if pattern.class == String
p = pattern if pattern.class == Regexp