aboutsummaryrefslogtreecommitdiffstats
path: root/spec/nodes/sum_spec.rb
blob: 7691b06590b0eaf4a37a8590cd07feb045cf5a94 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
require 'spec_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.should be_like %{
        SUM("users"."id") AS foo
      }
    end
  end
end