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