mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
12 lines
249 B
Ruby
12 lines
249 B
Ruby
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
|