aboutsummaryrefslogtreecommitdiffstats
path: root/test/nodes/test_named_function.rb
blob: 18ecdd2851f34e64c1d079472a7e8b30b943dee7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
    end
  end
end