aboutsummaryrefslogtreecommitdiffstats
path: root/spec/engines/memory/unit/relations/project_spec.rb
blob: 92ed9fa74b944da72190bf5c9d84f3acc94ad6b1 (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
require 'spec_helper'

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

    describe '#call' do
      it 'retains only the attributes that are provided' do
        @relation                   \
          .project(@relation[:id])  \
        .let do |relation|
          relation.call.should == [
            Row.new(relation, [1]),
            Row.new(relation, [2]),
            Row.new(relation, [3])
          ]
        end
      end
    end
  end
end