From 30c7f0e4b365c85b7a910a0553ed936be56b9c4b Mon Sep 17 00:00:00 2001 From: Aaron Patterson Date: Mon, 25 Apr 2011 12:01:22 -0700 Subject: add a factory method for production LOWER functions --- test/test_factory_methods.rb | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'test') diff --git a/test/test_factory_methods.rb b/test/test_factory_methods.rb index 6506d3c472..50f77c3175 100644 --- a/test/test_factory_methods.rb +++ b/test/test_factory_methods.rb @@ -22,6 +22,13 @@ module Arel assert_instance_of Nodes::On, on assert_equal :one, on.expr end + + def test_lower + lower = @factory.lower :one + assert_instance_of Nodes::NamedFunction, lower + assert_equal 'LOWER', lower.name + assert_equal [:one], lower.expressions + end end end end -- cgit v1.2.3