blob: f8e9a3658d3b9e0f4d8002506445fba802a6c1ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../fixtures/classes', __FILE__)
require File.expand_path('../shared/accessor', __FILE__)
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
|