Skip to content

Commit

Permalink
Exception handling more readable
Browse files Browse the repository at this point in the history
[#5601 state:committed]

Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
  • Loading branch information
thiagopradi authored and spastorino committed Sep 19, 2010
1 parent e125bf2 commit ab59522
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 26 deletions.
16 changes: 8 additions & 8 deletions actionpack/test/controller/assert_select_test.rb
Expand Up @@ -461,8 +461,8 @@ def test_assert_select_rjs_for_remove_offers_useful_error_when_assertion_fails

assert_select_rjs :remove, "test1"

rescue Assertion
assert_equal "No RJS statement that removes 'test1' was rendered.", $!.message
rescue Assertion => e
assert_equal "No RJS statement that removes 'test1' was rendered.", e.message
end

def test_assert_select_rjs_for_remove_ignores_block
Expand Down Expand Up @@ -493,8 +493,8 @@ def test_assert_select_rjs_for_show_offers_useful_error_when_assertion_fails

assert_select_rjs :show, "test1"

rescue Assertion
assert_equal "No RJS statement that shows 'test1' was rendered.", $!.message
rescue Assertion => e
assert_equal "No RJS statement that shows 'test1' was rendered.", e.message
end

def test_assert_select_rjs_for_show_ignores_block
Expand Down Expand Up @@ -525,8 +525,8 @@ def test_assert_select_rjs_for_hide_offers_useful_error_when_assertion_fails

assert_select_rjs :hide, "test1"

rescue Assertion
assert_equal "No RJS statement that hides 'test1' was rendered.", $!.message
rescue Assertion => e
assert_equal "No RJS statement that hides 'test1' was rendered.", e.message
end

def test_assert_select_rjs_for_hide_ignores_block
Expand Down Expand Up @@ -557,8 +557,8 @@ def test_assert_select_rjs_for_toggle_offers_useful_error_when_assertion_fails

assert_select_rjs :toggle, "test1"

rescue Assertion
assert_equal "No RJS statement that toggles 'test1' was rendered.", $!.message
rescue Assertion => e
assert_equal "No RJS statement that toggles 'test1' was rendered.", e.message
end

def test_assert_select_rjs_for_toggle_ignores_block
Expand Down
Expand Up @@ -67,8 +67,8 @@ def self.establish_connection(spec = nil)

begin
require "active_record/connection_adapters/#{spec[:adapter]}_adapter"
rescue LoadError
raise "Please install the #{spec[:adapter]} adapter: `gem install activerecord-#{spec[:adapter]}-adapter` (#{$!})"
rescue LoadError => e
raise "Please install the #{spec[:adapter]} adapter: `gem install activerecord-#{spec[:adapter]}-adapter` (#{e})"
end

adapter_method = "#{spec[:adapter]}_connection"
Expand Down
8 changes: 4 additions & 4 deletions activerecord/lib/active_record/railties/databases.rake
Expand Up @@ -45,8 +45,8 @@ namespace :db do
# Create the SQLite database
ActiveRecord::Base.establish_connection(config)
ActiveRecord::Base.connection
rescue
$stderr.puts $!, *($!.backtrace)
rescue Exception => e
$stderr.puts e, *(e.backtrace)
$stderr.puts "Couldn't create database for #{config.inspect}"
end
end
Expand Down Expand Up @@ -91,8 +91,8 @@ namespace :db do
ActiveRecord::Base.establish_connection(config.merge('database' => 'postgres', 'schema_search_path' => 'public'))
ActiveRecord::Base.connection.create_database(config['database'], config.merge('encoding' => @encoding))
ActiveRecord::Base.establish_connection(config)
rescue
$stderr.puts $!, *($!.backtrace)
rescue Exception => e
$stderr.puts e, *(e.backtrace)
$stderr.puts "Couldn't create database for #{config.inspect}"
end
end
Expand Down
4 changes: 2 additions & 2 deletions activeresource/lib/active_resource/base.rb
Expand Up @@ -589,8 +589,8 @@ def prefix_source() "#{value}" end
def prefix(options={}) "#{prefix_call}" end
RUBY_EVAL
end
rescue
logger.error "Couldn't set prefix: #{$!}\n #{code}" if logger
rescue Exception => e
logger.error "Couldn't set prefix: #{e}\n #{code}" if logger
raise
end

Expand Down
4 changes: 2 additions & 2 deletions activesupport/lib/active_support/cache.rb
Expand Up @@ -61,8 +61,8 @@ def self.lookup_store(*store_option)
store_class =
begin
require "active_support/cache/#{store}"
rescue LoadError
raise "Could not find cache store adapter for #{store} (#{$!})"
rescue LoadError => e
raise "Could not find cache store adapter for #{store} (#{e})"
else
ActiveSupport::Cache.const_get(store_class_name)
end
Expand Down
8 changes: 4 additions & 4 deletions activesupport/lib/active_support/testing/performance.rb
Expand Up @@ -58,16 +58,16 @@ def run_test(metric, mode)
metric.send(mode) { __send__ @method_name }
rescue ::Test::Unit::AssertionFailedError => e
add_failure(e.message, e.backtrace)
rescue StandardError, ScriptError
add_error($!)
rescue StandardError, ScriptError => e
add_error(e)
ensure
begin
teardown
run_callbacks :teardown, :enumerator => :reverse_each
rescue ::Test::Unit::AssertionFailedError => e
add_failure(e.message, e.backtrace)
rescue StandardError, ScriptError
add_error($!)
rescue StandardError, ScriptError => e
add_error(e)
end
end

Expand Down
4 changes: 2 additions & 2 deletions activesupport/test/core_ext/duration_test.rb
Expand Up @@ -53,8 +53,8 @@ def test_argument_error
flunk("no exception was raised")
rescue ArgumentError => e
assert_equal 'expected a time or date, got ""', e.message, "ensure ArgumentError is not being raised by dependencies.rb"
rescue Exception
flunk("ArgumentError should be raised, but we got #{$!.class} instead")
rescue Exception => e
flunk("ArgumentError should be raised, but we got #{e.class} instead")
end
end

Expand Down
4 changes: 2 additions & 2 deletions activesupport/test/ordered_hash_test.rb
Expand Up @@ -217,8 +217,8 @@ def test_alternate_initialization_raises_exception_on_odd_length_args
ActiveSupport::OrderedHash[1,2,3,4,5]
flunk "Hash::[] should have raised an exception on initialization " +
"with an odd number of parameters"
rescue
assert_equal "odd number of arguments for Hash", $!.message
rescue ArgumentError => e
assert_equal "odd number of arguments for Hash", e.message
end
end

Expand Down

0 comments on commit ab59522

Please sign in to comment.