Sha256: de4e7a28464b82159b1e0c9189d1d6927829b4e67442f2780ce2efd0d654d9d8

Contents?: true

Size: 1.18 KB

Versions: 3

Compression:

Stored size: 1.18 KB

Contents

require 'spec_helper'

module Arel
  describe Expression do
    before do
      @relation = Table.new(:users)
      @attribute = @relation[:id]
    end

    describe 'Expression::Transformations' do
      before do
        @expression = Count.new(@attribute)
      end

      describe '#bind' do
        it "manufactures an attribute with a rebound relation and self as the ancestor" do
          derived_relation = @relation.where(@relation[:id].eq(1))
          @expression.bind(derived_relation).should == Count.new(@attribute.bind(derived_relation), nil, @expression)
        end

        it "returns self if the substituting to the same relation" do
          @expression.bind(@relation).should == @expression
        end
      end

      describe '#as' do
        it "manufactures an aliased expression" do
          @expression.as(:alias).should == Expression.new(@attribute, :alias, @expression)
        end
      end

      describe '#to_attribute' do
        it "manufactures an attribute with the expression as an ancestor" do
          @expression.to_attribute(@relation).should == Attribute.new(@relation, @expression.alias, :ancestor => @expression)
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
arel-1.0.1 spec/algebra/unit/primitives/expression_spec.rb
arel-1.0.0 spec/algebra/unit/primitives/expression_spec.rb
arel-1.0.0.rc1 spec/algebra/unit/primitives/expression_spec.rb