aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/test/cases/arel/nodes/sum_test.rb
blob: 50159649518fa0207a95f0fe9454864412e13712 (plain) (tree)
1
2
3
4
5
6
7
8
9
                             

                            
 
                                       
                  
                                
                                    
                                                     



                                
 


                                                                        


                                     

                                                                         


                                     


                                





                                                
   
# frozen_string_literal: true

require_relative "../helper"

class Arel::Nodes::SumTest < Arel::Spec
  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