File: butfirst_spec.rb

package info (click to toggle)
ruby-powerpack 0.1.1-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, sid, trixie
  • size: 492 kB
  • sloc: ruby: 819; makefile: 3
file content (13 lines) | stat: -rw-r--r-- 298 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'spec_helper'

unless Array.method_defined? :butfirst
  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
end