summaryrefslogtreecommitdiff
path: root/spec/ruby/core/nil/to_r_spec.rb
blob: 8be43baf00b8220213bfc2772260e0aad933a903 (plain)
1
2
3
4
5
6
7
require_relative '../../spec_helper'

describe "NilClass#to_r" do
  it "returns 0/1" do
    nil.to_r.should == Rational(0, 1)
  end
end