Sha256: b99f7dbdebff61a85d818bb5621184037f5b9e8d6028a96dc77fd2a6ab4a87a8
Contents?: true
Size: 333 Bytes
Versions: 118
Compression:
Stored size: 333 Bytes
Contents
require 'helper' module Arel module Nodes describe 'not' do describe '#not' do it 'makes a NOT node' do attr = Table.new(:users)[:id] expr = attr.eq(10) node = expr.not node.must_be_kind_of Not node.expr.must_equal expr end end end end end
Version data entries
118 entries across 100 versions & 14 rubygems