aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2013-01-22 00:30:45 -0200
committerRafael Mendonça França <rafaelmfranca@gmail.com>2013-01-22 00:30:45 -0200
commit4de3b3dac5bb66e1566ff89f1c2632bfbb25f043 (patch)
tree98fa40a0a890c5cff16cf1e76ae0d98be0ccc1ae /activerecord/test
parent19bd2f227929c6ad3c1ea6d675d91f2165dec40b (diff)
downloadrails-4de3b3dac5bb66e1566ff89f1c2632bfbb25f043.tar.gz
rails-4de3b3dac5bb66e1566ff89f1c2632bfbb25f043.tar.bz2
rails-4de3b3dac5bb66e1566ff89f1c2632bfbb25f043.zip
Whitespaces :scissors:
[ci skip]
Diffstat (limited to 'activerecord/test')
-rw-r--r--activerecord/test/cases/connection_pool_test.rb11
1 files changed, 4 insertions, 7 deletions
diff --git a/activerecord/test/cases/connection_pool_test.rb b/activerecord/test/cases/connection_pool_test.rb
index ea344e992b..23e64bee7e 100644
--- a/activerecord/test/cases/connection_pool_test.rb
+++ b/activerecord/test/cases/connection_pool_test.rb
@@ -328,19 +328,16 @@ module ActiveRecord
assert @pool.connection.visitor.is_a?(Arel::Visitors::ToSql)
end
-
- #make sure exceptions are thrown when establish_connection
- #is called with a anonymous class
+ # make sure exceptions are thrown when establish_connection
+ # is called with a anonymous class
def test_anonymous_class_exception
anonymous = Class.new(ActiveRecord::Base)
handler = ActiveRecord::Base.connection_handler
-
- assert_raises(RuntimeError){
+
+ assert_raises(RuntimeError) {
handler.establish_connection anonymous, nil
}
end
-
-
end
end
end