blob: d859a698c50ed4e06a4074645e96cb42e3e2ef32 (
plain)
1
2
3
4
5
6
7
8
9
|
require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../fixtures/classes', __FILE__)
require File.expand_path('../shared/unshift', __FILE__)
ruby_version_is "2.5" do
describe "Array#prepend" do
it_behaves_like :array_unshift, :prepend
end
end
|