summaryrefslogtreecommitdiff
path: root/spec/ruby/library/mathn/mathn_spec.rb
diff options
context:
space:
mode:
authoreregon <eregon@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-02-21 15:38:59 +0000
committereregon <eregon@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2019-02-21 15:38:59 +0000
commitda7976235fbc2986925969646071bebe3702e49f (patch)
tree83bbf6a8e03cf990369feabe6c1c9d45c69f4c85 /spec/ruby/library/mathn/mathn_spec.rb
parentb8e389a0f3226c90e96e02e6396686a3bef6a456 (diff)
Update to ruby/spec@7a16e01
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@67112 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'spec/ruby/library/mathn/mathn_spec.rb')
-rw-r--r--spec/ruby/library/mathn/mathn_spec.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/spec/ruby/library/mathn/mathn_spec.rb b/spec/ruby/library/mathn/mathn_spec.rb
index c9e8c05a8d..129c8f3288 100644
--- a/spec/ruby/library/mathn/mathn_spec.rb
+++ b/spec/ruby/library/mathn/mathn_spec.rb
@@ -3,7 +3,11 @@ require_relative '../../spec_helper'
describe "mathn" do
ruby_version_is "2.5" do
it "is no longer part of the standard library" do
- -> { require "mathn" }.should raise_error(LoadError)
+ -> {
+ require "mathn"
+ }.should raise_error(LoadError) { |e|
+ e.path.should == 'mathn'
+ }
end
end
end