Sha256: 88a2eafbd66db29b03f8cfddb390e9d9a85cc165dbc434455f4f458e59659c83
Contents?: true
Size: 411 Bytes
Versions: 83
Compression:
Stored size: 411 Bytes
Contents
require File.dirname(File.join(__rhoGetCurrentDir(), __FILE__)) + '/../../spec_helper' require File.dirname(File.join(__rhoGetCurrentDir(), __FILE__)) + '/fixtures/classes' describe "Struct#to_a" do it "returns the values for this instance as an array" do Struct::Car.new('Geo', 'Metro', 1995).to_a.should == ['Geo', 'Metro', 1995] Struct::Car.new('Ford').to_a.should == ['Ford', nil, nil] end end
Version data entries
83 entries across 83 versions & 1 rubygems