summaryrefslogtreecommitdiff
path: root/spec/ruby/library/bigdecimal/ver_spec.rb
blob: 15c70993068a641d2fc2ec7d75bc0dbd034afb34 (plain)
1
2
3
4
5
6
7
8
9
10
11
require_relative '../../spec_helper'
require 'bigdecimal'

describe "BigDecimal.ver" do

  it "returns the Version number" do
    lambda {BigDecimal.ver }.should_not raise_error()
    BigDecimal.ver.should_not == nil
  end

end