summaryrefslogtreecommitdiff
path: root/spec/ruby/core/struct/to_a_spec.rb
blob: cb61dc45cc86fa8b6eb98176cd12d0c5fa0d17a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require_relative '../../spec_helper'
require_relative 'fixtures/classes'
require_relative 'shared/accessor'

describe "Struct#to_a" do
  it "returns the values for this instance as an array" do
    StructClasses::Car.new('Geo', 'Metro', 1995).to_a.should == ['Geo', 'Metro', 1995]
    StructClasses::Car.new('Ford').to_a.should == ['Ford', nil, nil]
  end

  it_behaves_like :struct_accessor, :to_a
end