aboutsummaryrefslogtreecommitdiffstats
path: root/test/nodes/test_sum.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/nodes/test_sum.rb')
-rw-r--r--test/nodes/test_sum.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/nodes/test_sum.rb b/test/nodes/test_sum.rb
index d65cd31d4b..d387e7f9ef 100644
--- a/test/nodes/test_sum.rb
+++ b/test/nodes/test_sum.rb
@@ -21,4 +21,13 @@ describe Arel::Nodes::Sum do
assert_equal 2, array.uniq.size
end
end
+
+ describe 'order' do
+ it 'should order the sum' do
+ table = Arel::Table.new :users
+ table[:id].sum.desc.to_sql.must_be_like %{
+ SUM("users"."id") DESC
+ }
+ end
+ end
end