aboutsummaryrefslogtreecommitdiffstats
path: root/spec/engines/memory/unit/relations/skip_spec.rb
blob: abb87d2e3849b4072f0a383e2ea0000e00f84884 (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
29
30
31
require 'spec_helper'

module Arel
  describe Skip 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 first n rows' do
        @relation   \
          .skip(1)  \
        .tap do |relation|
          rows = relation.call
          rows.length.should == 2
          one, two = *rows

          one.relation.should == relation
          one.tuple.should == [2, 'duck']

          two.relation.should == relation
          two.tuple.should == [3, 'goose']
        end
      end
    end
  end
end