blob: 88484ff4f74f5a14d5e3a121ef794d6761359bb7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
module Arel
module Nodes
describe 'or' do
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.expr.left.should == left
check node.expr.right.should == right
oror = node.or(right)
check oror.expr.left == node
check oror.expr.right == right
end
end
end
end
end
|