summaryrefslogtreecommitdiff
path: root/spec/ruby/core/array/deconstruct_spec.rb
blob: ad67abe47bc7fcca1c5847d25633d3313c903032 (plain)
1
2
3
4
5
6
7
8
9
require_relative '../../spec_helper'

describe "Array#deconstruct" do
  it "returns self" do
    array = [1]

    array.deconstruct.should equal array
  end
end