aboutsummaryrefslogtreecommitdiffstats
path: root/spec/arel/attributes/attribute_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/arel/attributes/attribute_spec.rb')
-rw-r--r--spec/arel/attributes/attribute_spec.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/spec/arel/attributes/attribute_spec.rb b/spec/arel/attributes/attribute_spec.rb
index 449cc38dad..fb6954dc7e 100644
--- a/spec/arel/attributes/attribute_spec.rb
+++ b/spec/arel/attributes/attribute_spec.rb
@@ -3,6 +3,23 @@ require 'spec_helper'
module Arel
module Attributes
describe 'attribute' do
+ describe '#average' do
+ it 'should create a AVG node' do
+ relation = Table.new(:users)
+ relation[:id].average.should be_kind_of Nodes::Avg
+ end
+
+ # FIXME: backwards compat. Is this really necessary?
+ it 'should set the alias to "avg_id"' do
+ relation = Table.new(:users)
+ mgr = relation.project relation[:id].average
+ mgr.to_sql.should be_like %{
+ SELECT AVG("users"."id") AS avg_id
+ FROM "users"
+ }
+ end
+ end
+
describe '#maximum' do
it 'should create a MAX node' do
relation = Table.new(:users)