blob: 88115669d1d243192774c7a5a2482a9af5f85850 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
require 'helper'
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
node.expr.left.must_equal left
node.expr.right.must_equal right
oror = node.or(right)
oror.expr.left.must_equal node
oror.expr.right.must_equal right
end
end
end
end
end
|