Sha256: dd7872a30aac48368a69c8f90ecc1ce82464bf901f5fa80a8b6b353ef1c5cd17

Contents?: true

Size: 1.32 KB

Versions: 7

Compression:

Stored size: 1.32 KB

Contents

require 'helper'

module Arel
  module Nodes
    class TestNamedFunction < MiniTest::Unit::TestCase
      def test_construct
        function = NamedFunction.new 'omg', 'zomg'
        assert_equal 'omg', function.name
        assert_equal 'zomg', function.expressions
      end

      def test_function_alias
        function = NamedFunction.new 'omg', 'zomg'
        function = function.as('wth')
        assert_equal 'omg', function.name
        assert_equal 'zomg', function.expressions
        assert_kind_of SqlLiteral, function.alias
        assert_equal 'wth', function.alias
      end

      def test_construct_with_alias
        function = NamedFunction.new 'omg', 'zomg', 'wth'
        assert_equal 'omg', function.name
        assert_equal 'zomg', function.expressions
        assert_kind_of SqlLiteral, function.alias
        assert_equal 'wth', function.alias
      end

      def test_equality_with_same_ivars
        array = [
          NamedFunction.new('omg', 'zomg', 'wth'),
          NamedFunction.new('omg', 'zomg', 'wth')
        ]
        assert_equal 1, array.uniq.size
      end

      def test_inequality_with_different_ivars
        array = [
          NamedFunction.new('omg', 'zomg', 'wth'),
          NamedFunction.new('zomg', 'zomg', 'wth')
        ]
        assert_equal 2, array.uniq.size
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
arel-4.0.2 test/nodes/test_named_function.rb
arel-5.0.0 test/nodes/test_named_function.rb
arel-4.0.1 test/nodes/test_named_function.rb
challah-1.0.0 vendor/bundle/gems/arel-4.0.0/test/nodes/test_named_function.rb
arel-4.0.0 test/nodes/test_named_function.rb
arel-4.0.0.beta2 test/nodes/test_named_function.rb
arel-4.0.0.beta1 test/nodes/test_named_function.rb