summaryrefslogtreecommitdiff
path: root/spec/exception_whitelist_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/exception_whitelist_spec.rb')
-rw-r--r--spec/exception_whitelist_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/exception_whitelist_spec.rb b/spec/exception_whitelist_spec.rb
index 414abbb7..8019203e 100644
--- a/spec/exception_whitelist_spec.rb
+++ b/spec/exception_whitelist_spec.rb
@@ -6,7 +6,7 @@ describe "Pry.config.exception_whitelist" do
end
it 'should rescue all exceptions NOT specified on whitelist' do
- Pry.config.exception_whitelist.include?(NameError).should == false
+ Pry.config.exception_whitelist.include?(NameError).should.be_false
lambda { Pry.start(self, :input => StringIO.new("raise NameError\nexit"), :output => @str_output) }.should.not.raise NameError
end