blob: c90843cd7d8b4423903e70fb92a6397060c5a49a (
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
32
33
34
|
require File.join(File.dirname(__FILE__), '..', '..', '..', 'spec_helper')
module Arel
describe Array do
before do
@relation = Array.new([[1], [2], [3]], [:id])
end
describe '#attributes' do
it 'manufactures attributes corresponding to the names given on construction' do
@relation.attributes.should == [
Attribute.new(@relation, :id)
]
end
end
describe '#call' do
it "manufactures an array of hashes of attributes to values" do
@relation.call.should == [
{ @relation[:id] => 1 },
{ @relation[:id] => 2 },
{ @relation[:id] => 3 }
]
end
it '' do
@relation.where(@relation[:id].lt(3)).call.should == [
{ @relation[:id] => 1 },
{ @relation[:id] => 2 }
]
end
end
end
end
|