Sha256: 5e8e5298156e3fc5a773cb92ee52b8a3ee698d560826d6fe968e29d7edbb5eaa
Contents?: true
Size: 768 Bytes
Versions: 3
Compression:
Stored size: 768 Bytes
Contents
# encoding: utf-8 require 'spec_helper' describe Optimizer::Relation::Operation::Reverse::UnoptimizedOperand, '#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 optimizable' do let(:operand) { base.reverse } 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