aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/library/mathn/mathn_spec.rb
blob: aedf88ea7b9c7e15dfbbf500da84e29c02960b92 (plain)
1
2
3
4
5
6
7
8
9
require File.expand_path('../../../spec_helper', __FILE__)

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)
    end
  end
end