diff options
author | Joshua Peek <josh@joshpeek.com> | 2008-07-16 19:49:46 -0500 |
---|---|---|
committer | Joshua Peek <josh@joshpeek.com> | 2008-07-16 19:49:46 -0500 |
commit | cd6301557005617583e3f9ca5fb56297adcce7cc (patch) | |
tree | c247095256af92a0978dd767dd8f1cca2bc7c719 /actionpack | |
parent | f7fdbae770275ccbc277c42287b9783cb00fa9fa (diff) | |
download | rails-cd6301557005617583e3f9ca5fb56297adcce7cc.tar.gz rails-cd6301557005617583e3f9ca5fb56297adcce7cc.tar.bz2 rails-cd6301557005617583e3f9ca5fb56297adcce7cc.zip |
All 2xx requests are considered successful [#217 state:resolved]
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/CHANGELOG | 2 | ||||
-rw-r--r-- | actionpack/lib/action_controller/test_process.rb | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index 21cc7a9c64..da9fdbfd9d 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,5 +1,7 @@ *Edge* +* All 2xx requests are considered successful [Josh Peek] + * Fixed that AssetTagHelper#compute_public_path shouldn't cache the asset_host along with the source or per-request proc's won't run [DHH] * Removed config.action_view.cache_template_loading, use config.cache_classes instead [Josh Peek] diff --git a/actionpack/lib/action_controller/test_process.rb b/actionpack/lib/action_controller/test_process.rb index 0b160ff41d..721592b81f 100644 --- a/actionpack/lib/action_controller/test_process.rb +++ b/actionpack/lib/action_controller/test_process.rb @@ -171,7 +171,7 @@ module ActionController #:nodoc: # Was the response successful? def success? - response_code == 200 + (200..299).include?(response_code) end # Was the URL not found? |