Sha256: 9a46ef04f6a16155cd44784ded9367fc32099fe687c46715f78744f178ce4be3
Contents?: true
Size: 758 Bytes
Versions: 1
Compression:
Stored size: 758 Bytes
Contents
# encoding: utf-8 require 'spec_helper' describe Optimizer::Relation::Operation::Reverse::OrderOperand, '#optimizable?' do subject { object.optimizable? } let(:base) { Relation.new([[:id, Integer]], LazyEnumerable.new([[1]])) } let(:relation) { operand.reverse } let(:object) { described_class.new(relation) } before do expect(object.operation).to be_kind_of(Relation::Operation::Reverse) 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.sort_by { |r| r.id }.take(2) } it { should be(false) } end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
axiom-optimizer-0.1.1 | spec/unit/axiom/optimizer/relation/operation/reverse/order_operand/optimizable_predicate_spec.rb |