1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/spec/arel/nodes/or_spec.rb
2010-08-16 17:26:12 -07:00

20 lines
464 B
Ruby

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.left.should == left
check node.right.should == right
oror = node.or(right)
check oror.left == node
check oror.right == right
end
end
end
end
end