aboutsummaryrefslogtreecommitdiffstats
path: root/test/nodes/test_sum.rb
blob: d387e7f9efe82e814d0c67b52964c7800c11c22a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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

  describe 'equality' do
    it 'is equal with equal ivars' do
      array = [Arel::Nodes::Sum.new('foo'), Arel::Nodes::Sum.new('foo')]
      assert_equal 1, array.uniq.size
    end

    it 'is not equal with different ivars' do
      array = [Arel::Nodes::Sum.new('foo'), Arel::Nodes::Sum.new('foo!')]
      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