Sha256: 10a2e37f0a507d0356b20c1202190aadf174a0a0cf57ee2b6dceee23719b2ef0

Contents?: true

Size: 496 Bytes

Versions: 131

Compression:

Stored size: 496 Bytes

Contents

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

Version data entries

131 entries across 113 versions & 15 rubygems

Version Path
arel-2.0.9 test/nodes/test_or.rb
arel-2.0.9.rc1 test/nodes/test_or.rb
arel-2.0.8 test/nodes/test_or.rb
arel-2.0.8.beta.20110131120940 test/nodes/test_or.rb
arel-2.0.7 test/nodes/test_or.rb
arel-2.0.7.beta.20110110114925 test/nodes/test_or.rb
arel-2.0.6 test/nodes/test_or.rb
arel-2.0.5 test/nodes/test_or.rb
arel-2.0.4 test/nodes/test_or.rb
arel-2.0.3 test/nodes/test_or.rb
arel-2.0.2 test/nodes/test_or.rb