Sha256: 5a5bc5459478e49e890dae2bc6a6791561d391ca5e4121da3a8b935249edbcb3
Contents?: true
Size: 757 Bytes
Versions: 3
Compression:
Stored size: 757 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 ] ], [ [ 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 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
3 entries across 3 versions & 1 rubygems