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

Version Path
angular-rails4-templates-0.4.1 vendor/ruby/2.1.0/gems/arel-5.0.1.20140414130214/test/nodes/test_distinct.rb
angular-rails4-templates-0.4.0 vendor/ruby/2.1.0/gems/arel-5.0.1.20140414130214/test/nodes/test_distinct.rb
angular-rails4-templates-0.3.0 vendor/ruby/2.1.0/gems/arel-5.0.1.20140414130214/test/nodes/test_distinct.rb
arel-6.0.0.beta2 test/nodes/test_distinct.rb
arel-6.0.0.beta1 test/nodes/test_distinct.rb
arel-5.0.1.20140414130214 test/nodes/test_distinct.rb
arel-4.0.2 test/nodes/test_distinct.rb
arel-5.0.0 test/nodes/test_distinct.rb
arel-4.0.1 test/nodes/test_distinct.rb
challah-1.0.0 vendor/bundle/gems/arel-4.0.0/test/nodes/test_distinct.rb
arel-4.0.0 test/nodes/test_distinct.rb
arel-4.0.0.beta2 test/nodes/test_distinct.rb
arel-4.0.0.beta1 test/nodes/test_distinct.rb