aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/nil/to_r_spec.rb
blob: efbd2f5540e0cd5e8a946d555de50a0583e766b4 (plain)
1
2
3
4
5
6
7
require File.expand_path('../../../spec_helper', __FILE__)

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