aboutsummaryrefslogblamecommitdiffstats
path: root/spec/nodes/count_spec.rb
blob: 185b4d8eb92fc995cbb5b89fc51bd9a0fd962443 (plain) (tree)
1
2
3
4
5
6
7
8
9


                              





                                                                      








                                                         
require 'spec_helper'

describe Arel::Nodes::Count do
  describe 'backwards compatibility' do
    it 'must be an expression' do
      Arel::Nodes::Count.new('foo').should be_kind_of Arel::Expression
    end
  end

  describe "as" do
    it 'should alias the count' do
      table = Arel::Table.new :users
      table[:id].count.as('foo').to_sql.should be_like %{
        COUNT("users"."id") AS foo
      }
    end
  end
end