aboutsummaryrefslogtreecommitdiffstats
path: root/test/nodes/test_sum.rb
blob: 50f5c0f4b567e4448dcf6601649396103ae2f631 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
require 'helper'

describe Arel::Nodes::Sum do
  describe "as" do
    it 'should alias the sum' do
      table = Arel::Table.new :users
      table[:id].sum.as('foo').to_sql.must_be_like %{
        SUM("users"."id") AS foo
      }
    end
  end
end