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