Sha256: 54971636a7e980fbad01a40b5013adb3ea33342dd7d5bbf70b960821676eaa1e
Contents?: true
Size: 604 Bytes
Versions: 1
Compression:
Stored size: 604 Bytes
Contents
# encoding: utf-8 require 'spec_helper' describe Optimizer::Algebra::Summarization::OrderOperand, '#optimizable?' do subject { object.optimizable? } let(:base) { Relation.new([[:id, Integer]], LazyEnumerable.new) } let(:relation) { operand.summarize([]) {} } let(:object) { described_class.new(relation) } context 'when operand is an order' do let(:operand) { base.sort_by { |r| r.id } } it { should be(true) } end context 'when operand is not an order' do let(:operand) { base } 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/algebra/summarization/order_operand/optimizable_predicate_spec.rb |