Sha256: 7c7b381f2733d029cadde58b7f1ad2d56d78f0dc49e8cca0c0842730efadb329
Contents?: true
Size: 927 Bytes
Versions: 3
Compression:
Stored size: 927 Bytes
Contents
# encoding: utf-8 require 'spec_helper' describe Optimizer::Relation::Operation::Limit::EqualLimitOperand, '#optimizable?' do subject { object.optimizable? } let(:base) { Relation.new([ [ :id, Integer ] ], [ [ 1 ] ].each).sort_by { |r| r.id } } let(:relation) { operand.take(1) } let(:object) { described_class.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
3 entries across 3 versions & 1 rubygems