File: last_spec.rb

package info (click to toggle)
ruby-immutable-ruby 0.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,852 kB
  • sloc: ruby: 16,556; makefile: 4
file content (45 lines) | stat: -rw-r--r-- 965 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
require 'spec_helper'

describe Immutable::Vector do
  let(:vector) { V[*values] }

  describe '#last' do
    let(:last) { vector.last }

    shared_examples 'checking values' do
      it 'returns the last item' do
        expect(last).to eq(last_item)
      end
    end

    context 'with an empty vector' do
      let(:last_item) { nil }
      let(:values) { [] }

      include_examples 'checking values'
    end

    context 'with a single item vector' do
      let(:last_item) { 'A' }
      let(:values) { %w[A] }

      include_examples 'checking values'
    end

    context 'with a multi-item vector' do
      let(:last_item) { 'B' }
      let(:values) { %w[A B] }

      include_examples 'checking values'
    end

    [31, 32, 33, 1023, 1024, 1025].each do |size|
      context "with a #{size}-item vector" do
        let(:last_item) { size }
        let(:values) { (1..size).to_a }

        include_examples 'checking values'
      end
    end
  end
end