Sha256: 4e9a9536879a347d007bd7ae3322b040d241ed0978f62e90aa5ed092b4a3fff7
Contents?: true
Size: 239 Bytes
Versions: 23
Compression:
Stored size: 239 Bytes
Contents
require 'spec_helper' describe 'Array#butfirst' do it 'returns an array without the first element' do expect([1, 2, 3].butfirst).to eq([2, 3]) end it 'returns nil for empty lists' do expect([].butfirst).to be_nil end end
Version data entries
23 entries across 20 versions & 6 rubygems