summaryrefslogtreecommitdiff
path: root/spec/ruby/library/mathn/mathn_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/library/mathn/mathn_spec.rb')
-rw-r--r--spec/ruby/library/mathn/mathn_spec.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/spec/ruby/library/mathn/mathn_spec.rb b/spec/ruby/library/mathn/mathn_spec.rb
deleted file mode 100644
index 129c8f3288..0000000000
--- a/spec/ruby/library/mathn/mathn_spec.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-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) { |e|
- e.path.should == 'mathn'
- }
- end
- end
-end