blob: d9edc352f3232b1a7a5eaec72b4d3f1937b0fcec (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
module Arel
module Nodes
describe 'equality' do
# FIXME: backwards compat
describe 'backwards compat' do
describe 'operator' do
it 'returns :==' do
attr = Table.new(:users)[:id]
left = attr.eq(10)
check left.operator.should == :==
end
end
describe 'operand1' do
it "should equal left" do
attr = Table.new(:users)[:id]
left = attr.eq(10)
check left.left.should == left.operand1
end
end
describe 'operand2' do
it "should equal right" do
attr = Table.new(:users)[:id]
left = attr.eq(10)
check left.right.should == left.operand2
end
end
end
describe 'or' do
it 'makes an OR node' do
attr = Table.new(:users)[:id]
left = attr.eq(10)
right = attr.eq(11)
node = left.or right
check node.left.should == left
check node.right.should == right
end
end
describe 'and' do
it 'makes and AND node' do
attr = Table.new(:users)[:id]
left = attr.eq(10)
right = attr.eq(11)
node = left.and right
check node.left.should == left
check node.right.should == right
end
end
end
end
end
|