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

describe "NilClass#to_a" do
  it "returns an empty array" do
    nil.to_a.should == []
  end
end