File: drop_last_spec.rb

package info (click to toggle)
ruby-powerpack 0.0.9-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 320 kB
  • ctags: 53
  • sloc: ruby: 727; makefile: 2
file content (15 lines) | stat: -rw-r--r-- 402 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'spec_helper'

describe 'Enumerable#drop_last' do
  it 'drops the last n elements' do
    expect([1, 2, 3, 4].drop_last(2)).to eq([1, 2])
  end

  it 'returns an empty array if you request to drop too many elems' do
    expect((1..10).drop_last(100)).to eq([])
  end

  it 'does not accept negative argument' do
    expect { [1, 2, 3, 4].drop_last(-1) }.to raise_error(ArgumentError)
  end
end