Sha256: 5294d5b3d50dade0172b181b0127a1cf4850d5f115a79b98ed532c9b5ce42c2f
Contents?: true
Size: 948 Bytes
Versions: 2
Compression:
Stored size: 948 Bytes
Contents
require 'spec_helper' describe 'Veritas::Optimizer::Relation::Operation::Limit::EqualLimitOperand#optimizable?' do subject { object.optimizable? } let(:klass) { Optimizer::Relation::Operation::Limit::EqualLimitOperand } 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(false) } end context 'when the operand is limited and equal to the operation' do let(:operand) { base.take(1) } it { should be(true) } end context 'when the operand is not limited' do let(:operand) { base } it { should be(false) } end end
Version data entries
2 entries across 2 versions & 1 rubygems