aboutsummaryrefslogtreecommitdiffstats
path: root/spec/engines/memory/unit/relations/order_spec.rb
blob: 86c59ffc465a11ce399ceb3a17caa015ffa3a14e (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 Order do
    before do
      @relation = Array.new([
        [1, 'duck' ],
        [2, 'duck' ],
        [3, 'goose']
      ], [[:id, Attributes::Integer], [:name, Attributes::String]])
    end

    describe '#call' do
      it 'sorts the relation with the provided ordering' do
        @relation                     \
          .order(@relation[:id].desc) \
        .tap do |relation|
          rows = relation.call
          rows.length.should == 3
          @relation.array.reverse.zip(rows) do |tuple, row|
            row.relation.should == relation
            row.tuple.should == tuple
          end
        end
      end
    end
  end
end