aboutsummaryrefslogtreecommitdiffstats
path: root/spec/engines/memory/unit/relations/take_spec.rb
blob: b7e49ddca61952c101bed89b3496f0c30b9f1ec4 (plain) (blame)
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
require 'spec_helper'

module Arel
  describe Take do
    before do
      @relation = Array.new([
        [1, 'duck' ],
        [2, 'duck' ],
        [3, 'goose']
      ], [[:id, Attributes::Integer], [:name, Attributes::String]])
    end

    describe '#call' do
      it 'removes the rows after the first n' do
        @relation   \
          .take(2)  \
        .tap do |relation|
          rows = relation.call
          rows.length.should == 2
          rows.each_with_index do |row, i|
            row.relation.should == relation
            row.tuple.should == [i + 1, 'duck']
          end
        end
      end
    end
  end
end