Fix warning: Using the raise_error matcher without providing a specific error

This commit is contained in:
takiy33 2015-06-21 08:56:04 +09:00
parent 3b483a9cba
commit e2d3d13acb
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ describe Pry::Hooks do
it 'should not allow adding of a hook with a duplicate name' do
@hooks.add_hook(:test_hook, :my_name) {}
expect { @hooks.add_hook(:test_hook, :my_name) {} }.to raise_error
expect { @hooks.add_hook(:test_hook, :my_name) {} }.to raise_error ArgumentError
end
it 'should create a new hook with a block' do

View File

@ -102,7 +102,7 @@ describe Pry do
# bug fix for https://github.com/pry/pry/issues/93
it 'should not leak pry constants into Object namespace' do
expect { pry_eval(Object.new, "Command") }.to raise_error
expect { pry_eval(Object.new, "Command") }.to raise_error NameError
end
it 'should be able to operate inside the BasicObject class' do