Sha256: 11924f06ba25c370a77424b498b4ebda58b75c30dfdeb0235fd4f5894da3f350

Contents?: true

Size: 958 Bytes

Versions: 1

Compression:

Stored size: 958 Bytes

Contents

require 'spec_helper'

describe 'Veritas::Optimizer::Relation::Operation::Limit::InequalLimitOperand#optimizable?' do
  subject { object.optimizable? }

  let(:klass)    { Optimizer::Relation::Operation::Limit::InequalLimitOperand }
  let(:base)     { Relation.new([ [ :id, Integer ] ], [ [ 1 ] ].each).order   }
  let(:relation) { operand.take(1)                                            }
  let(:object)   { klass.new(relation)                                        }

  before do
    object.operation.should be_kind_of(Relation::Operation::Limit)
  end

  context 'when the operand is limited and not equal to the operation' do
    let(:operand) { base.take(2) }

    it { should be(true) }
  end

  context 'when the operand is limited and equal to the operation' do
    let(:operand) { base.take(1) }

    it { should be(false) }
  end

  context 'when the operand is not limited' do
    let(:operand) { base }

    it { should be(false) }
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
veritas-0.0.1 spec/unit/veritas/optimizer/relation/operation/limit/inequal_limit_operand/optimizable_spec.rb