summaryrefslogtreecommitdiff
path: root/spec/ruby/library/mathn/mathn_spec.rb
blob: c9e8c05a8da55a5ec81a29600b10bd13043f1b76 (plain)
1
2
3
4
5
6
7
8
9
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)
    end
  end
end