Sha256: 44b0ab33a5f120af63816b670bd5e8c162980eeab1ffb376bbccd351b732d573
Contents?: true
Size: 424 Bytes
Versions: 13
Compression:
Stored size: 424 Bytes
Contents
require 'helper' module Arel module Nodes describe 'Distinct' do describe 'equality' do it 'is equal to other distinct nodes' do array = [Distinct.new, Distinct.new] assert_equal 1, array.uniq.size end it 'is not equal with other nodes' do array = [Distinct.new, Node.new] assert_equal 2, array.uniq.size end end end end end
Version data entries
13 entries across 13 versions & 3 rubygems