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

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

      array.deconstruct.should equal array
    end
  end
end