Sha256: a2b79805a47674306d7dae87d2d9438780f9fa16df465a624a1fe4ca0cb651f1
Contents?: true
Size: 750 Bytes
Versions: 3
Compression:
Stored size: 750 Bytes
Contents
# encoding: utf-8 require 'spec_helper' describe Optimizer::Relation::Operation::Limit::LimitOperand, '#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' do let(:operand) { base.take(2) } 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