From 89357c8f834f638210d004ae9426aaa052dd519b Mon Sep 17 00:00:00 2001 From: Glenn Gillen Date: Tue, 28 Jun 2011 19:10:57 +0100 Subject: Provide database connection settings as a URL. --- activerecord/test/cases/adapter_test.rb | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'activerecord/test') diff --git a/activerecord/test/cases/adapter_test.rb b/activerecord/test/cases/adapter_test.rb index 4c65193d75..da57349d93 100644 --- a/activerecord/test/cases/adapter_test.rb +++ b/activerecord/test/cases/adapter_test.rb @@ -60,6 +60,17 @@ class AdapterTest < ActiveRecord::TestCase assert_equal @connection.show_variable('collation_database'), @connection.collation end + def test_connect_with_url + begin + ar_config = ARTest.connection_config['arunit'] + url = "mysql://#{ar_config["username"]}@localhost/#{ar_config["database"]}" + ActiveRecord::Base.establish_connection(url) + assert_equal ar_config['database'], ActiveRecord::Base.connection.current_database + ensure + ActiveRecord::Base.establish_connection 'arunit' + end + end + def test_show_nonexistent_variable_returns_nil assert_nil @connection.show_variable('foo_bar_baz') end -- cgit v1.2.3