1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/test/nodes/test_named_function.rb

13 lines
296 B
Ruby

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