1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/test/nodes/test_or.rb

23 lines
496 B
Ruby
Raw Normal View History

require 'helper'
2010-08-16 20:26:12 -04:00
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
2010-08-16 20:26:12 -04:00
oror = node.or(right)
oror.expr.left.must_equal node
oror.expr.right.must_equal right
2010-08-16 20:26:12 -04:00
end
end
end
end
end