Merge pull request #1437 from takiy33/fix_rspec_warnings

Fix warning: Using the raise_error matcher without providing a specific error
This commit is contained in:
strcmp 2015-06-22 01:23:40 +01:00
commit 1f951143a1
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