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