Sha256: 2b88f4ce21f0275c9b56d65bbcc729ed1601b7852c75ac64d7b9ed18f0659bae
Contents?: true
Size: 554 Bytes
Versions: 9
Compression:
Stored size: 554 Bytes
Contents
require 'helper' module Arel module Visitors describe 'avoiding contamination between visitor dispatch tables' do before do @connection = Table.engine.connection @table = Table.new(:users) end it 'dispatches properly after failing upwards' do node = Nodes::Union.new(Nodes::True.new, Nodes::False.new) assert_equal "( TRUE UNION FALSE )", node.to_sql node.first # from Nodes::Node's Enumerable mixin assert_equal "( TRUE UNION FALSE )", node.to_sql end end end end
Version data entries
9 entries across 9 versions & 2 rubygems