Sha256: 54595d573da61604dd1be73d56a23c57f1a32a8640fcc2f2a033404db8176923

Contents?: true

Size: 1.86 KB

Versions: 11

Compression:

Stored size: 1.86 KB

Contents

require 'helper'

module Arel
  module Nodes
    describe 'Window' do
      describe 'equality' do
        it 'is equal with equal ivars' do
          window1 = Window.new
          window1.orders = [1, 2]
          window1.frame 3
          window2 = Window.new
          window2.orders = [1, 2]
          window2.frame 3
          array = [window1, window2]
          assert_equal 1, array.uniq.size
        end

        it 'is not equal with different ivars' do
          window1 = Window.new
          window1.orders = [1, 2]
          window1.frame 3
          window2 = Window.new
          window2.orders = [1, 2]
          window2.frame 4
          array = [window1, window2]
          assert_equal 2, array.uniq.size
        end
      end
    end

    describe 'NamedWindow' do
      describe 'equality' do
        it 'is equal with equal ivars' do
          window1 = NamedWindow.new 'foo'
          window1.orders = [1, 2]
          window1.frame 3
          window2 = NamedWindow.new 'foo'
          window2.orders = [1, 2]
          window2.frame 3
          array = [window1, window2]
          assert_equal 1, array.uniq.size
        end

        it 'is not equal with different ivars' do
          window1 = NamedWindow.new 'foo'
          window1.orders = [1, 2]
          window1.frame 3
          window2 = NamedWindow.new 'bar'
          window2.orders = [1, 2]
          window2.frame 3
          array = [window1, window2]
          assert_equal 2, array.uniq.size
        end
      end
    end

    describe 'CurrentRow' do
      describe 'equality' do
        it 'is equal to other current row nodes' do
          array = [CurrentRow.new, CurrentRow.new]
          assert_equal 1, array.uniq.size
        end

        it 'is not equal with other nodes' do
          array = [CurrentRow.new, Node.new]
          assert_equal 2, array.uniq.size
        end
      end
    end
  end
end


Version data entries

11 entries across 11 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_window.rb
angular-rails4-templates-0.4.0 vendor/ruby/2.1.0/gems/arel-5.0.1.20140414130214/test/nodes/test_window.rb
angular-rails4-templates-0.3.0 vendor/ruby/2.1.0/gems/arel-5.0.1.20140414130214/test/nodes/test_window.rb
arel-5.0.1.20140414130214 test/nodes/test_window.rb
arel-4.0.2 test/nodes/test_window.rb
arel-5.0.0 test/nodes/test_window.rb
arel-4.0.1 test/nodes/test_window.rb
challah-1.0.0 vendor/bundle/gems/arel-4.0.0/test/nodes/test_window.rb
arel-4.0.0 test/nodes/test_window.rb
arel-4.0.0.beta2 test/nodes/test_window.rb
arel-4.0.0.beta1 test/nodes/test_window.rb