summaryrefslogtreecommitdiff
path: root/spec/ruby/core/array/map_spec.rb
blob: 0c7f3afa8c029abc9e980c349fe0a2f0a30b80eb (plain)
1
2
3
4
5
6
7
8
9
10
11
require_relative '../../spec_helper'
require_relative 'fixtures/classes'
require_relative 'shared/collect'

describe "Array#map" do
  it_behaves_like :array_collect, :map
end

describe "Array#map!" do
  it_behaves_like :array_collect_b, :map!
end