Sha256: 970771ae64b0fbc059a0f4bdc2d275ba79f76b29ddc9e40dec0a9e3487ae3e2b

Contents?: true

Size: 615 Bytes

Versions: 116

Compression:

Stored size: 615 Bytes

Contents

require 'helper'

describe Arel::Nodes::Count do
  describe 'backwards compatibility' do
    it 'must be an expression' do
      Arel::Nodes::Count.new('foo').must_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.must_be_like %{
        COUNT("users"."id") AS foo
      }
    end
  end

  describe "eq" do
    it "should compare the count" do
      table = Arel::Table.new :users
      table[:id].count.eq(2).to_sql.must_be_like %{
        COUNT("users"."id") = 2
      }
    end
  end
end

Version data entries

116 entries across 98 versions & 14 rubygems

Version Path
fc-webicons-0.0.2 vendor/bundle/ruby/1.9.1/gems/arel-3.0.2/test/nodes/test_count.rb
fc-webicons-0.0.1 vendor/bundle/ruby/1.9.1/gems/arel-3.0.2/test/nodes/test_count.rb
active_mailer-0.0.5 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/arel-3.0.2/test/nodes/test_count.rb
active_mailer-0.0.4 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/arel-3.0.2/test/nodes/test_count.rb
active_mailer-0.0.3 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/arel-3.0.2/test/nodes/test_count.rb
challah-0.9.1.beta.3 vendor/bundle/gems/arel-3.0.2/test/nodes/test_count.rb
devise_sociable-0.1.0 vendor/bundle/gems/arel-3.0.2/test/nodes/test_count.rb
challah-0.9.1.beta vendor/bundle/gems/arel-3.0.2/test/nodes/test_count.rb
sunrise-cms-0.5.0.rc1 vendor/bundle/ruby/1.9.1/gems/arel-3.0.2/test/nodes/test_count.rb
challah-0.9.0 vendor/bundle/gems/arel-3.0.2/test/nodes/test_count.rb
dirty_history-0.7.3 dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/nodes/test_count.rb
dirty_history-0.7.2 dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/nodes/test_count.rb
dirty_history-0.7.1 dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/nodes/test_count.rb
challah-rolls-0.2.0 vendor/bundle/gems/arel-3.0.2/test/nodes/test_count.rb
challah-rolls-0.2.0 vendor/bundle/gems/challah-0.8.3/vendor/bundle/gems/arel-3.0.2/test/nodes/test_count.rb
challah-rolls-0.2.0 vendor/bundle/gems/challah-0.8.0.pre/vendor/bundle/gems/arel-3.0.2/test/nodes/test_count.rb
challah-0.8.3 vendor/bundle/gems/arel-3.0.2/test/nodes/test_count.rb
dirty_history-0.7.0 dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/nodes/test_count.rb
dirty_history-0.6.7 dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/nodes/test_count.rb
dirty_history-0.6.6 dirty_history/ruby/1.9.1/gems/arel-2.2.1/test/nodes/test_count.rb