Sha256: 50360ca97686df114a77777ad7872a814af30b2089599f6478366b3f5de69d73
Contents?: true
Size: 795 Bytes
Versions: 1
Compression:
Stored size: 795 Bytes
Contents
# encoding: utf-8 require 'spec_helper' describe Optimizer::Algebra::Restriction::SortedOperand, '#optimizable?' do subject { object.optimizable? } let(:base) { Relation.new([[:id, Integer]], LazyEnumerable.new([[1]])) } let(:predicate) { base[:id].eq(1) } let(:relation) { operand.restrict { predicate } } let(:object) { described_class.new(relation) } before do expect(object.operation).to be_kind_of(Algebra::Restriction) end context 'when the operand is sorted' do let(:operand) { base.sort_by { |r| r.id } } it { should be(true) } end context 'when the operand is not sorted' 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.2.0 | spec/unit/axiom/optimizer/algebra/restriction/sorted_operand/optimizable_predicate_spec.rb |