diff options
Diffstat (limited to 'spec/ruby/core/struct/to_a_spec.rb')
| -rw-r--r-- | spec/ruby/core/struct/to_a_spec.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/spec/ruby/core/struct/to_a_spec.rb b/spec/ruby/core/struct/to_a_spec.rb new file mode 100644 index 0000000000..cb61dc45cc --- /dev/null +++ b/spec/ruby/core/struct/to_a_spec.rb @@ -0,0 +1,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 |
