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