aboutsummaryrefslogtreecommitdiffstats
path: root/test/nodes/test_not.rb
blob: 7dffdea0c8bd0eb60b9a3a771dc7127d7a79cad8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require 'helper'

module Arel
  module Nodes
    describe 'not' do
      describe '#not' do
        it 'makes a NOT 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

          knot = node.or(right).not
        end
      end
    end
  end
end