aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2012-10-29 01:45:42 -0200
committerRafael Mendonça França <rafaelmfranca@gmail.com>2012-10-29 01:45:42 -0200
commit5d82c1fc56bedb3e0b736ec06b106b2989918978 (patch)
tree2b71e7ba92cc1d926936e812efe95d392c462679 /activerecord/test/cases
parent721cf54ee7b88fe6a4920b4ecabdd5beaae904a5 (diff)
downloadrails-5d82c1fc56bedb3e0b736ec06b106b2989918978.tar.gz
rails-5d82c1fc56bedb3e0b736ec06b106b2989918978.tar.bz2
rails-5d82c1fc56bedb3e0b736ec06b106b2989918978.zip
Make Active Record tests pass in isolation
Also remove the feature detecting for Ruby 1.9
Diffstat (limited to 'activerecord/test/cases')
-rw-r--r--activerecord/test/cases/connection_specification/resolver_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/connection_specification/resolver_test.rb b/activerecord/test/cases/connection_specification/resolver_test.rb
index 79f0c65859..46fc1a252f 100644
--- a/activerecord/test/cases/connection_specification/resolver_test.rb
+++ b/activerecord/test/cases/connection_specification/resolver_test.rb
@@ -42,7 +42,7 @@ module ActiveRecord
def test_encoded_password
skip "only if mysql is available" unless current_adapter?(:MysqlAdapter) or current_adapter?(:Mysql2Adapter)
password = 'am@z1ng_p@ssw0rd#!'
- encoded_password = URI.encode_www_form_component(password)
+ encoded_password = URI.respond_to?(:encode_www_form_component) ? URI.encode_www_form_component(password) : "am%40z1ng_p%40ssw0rd%23%21"
spec = resolve "mysql://foo:#{encoded_password}@localhost/bar"
assert_equal password, spec[:password]
end