Sha256: 98d6538ed03626123169cd6962e04e4f5fcc7994cd9b5a0234c7ea64efbf780e
Contents?: true
Size: 733 Bytes
Versions: 3
Compression:
Stored size: 733 Bytes
Contents
# encoding: utf-8 require 'spec_helper' describe Optimizer::Relation::Operation::Limit::ZeroLimit, '#optimizable?' do subject { object.optimizable? } let(:base) { Relation.new([ [ :id, Integer ] ], [ [ 1 ] ].each).sort_by { |r| r.id } } let(:relation) { base.take(limit) } let(:object) { described_class.new(relation) } before do object.operation.should be_kind_of(Relation::Operation::Limit) end context 'when the operation limit is 0' do let(:limit) { 0 } it { should be(true) } end context 'when the operation limit is not 0' do let(:limit) { 1 } it { should be(false) } end end
Version data entries
3 entries across 3 versions & 1 rubygems