Sha256: f29c4b47a843adc175cc5d20401593e8e19eeb532d98a92ff3a86678a3ecf86d
Contents?: true
Size: 564 Bytes
Versions: 1
Compression:
Stored size: 564 Bytes
Contents
# encoding: utf-8 require 'spec_helper' describe Optimizer::Algebra::Extension::OrderOperand, '#optimizable?' do subject { object.optimizable? } let(:base) { Relation.new([ [ :id, Integer ] ], [].each) } let(:relation) { operand.extend {} } let(:object) { described_class.new(relation) } context 'when operand is an order' do let(:operand) { base.order } 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 |
---|---|
veritas-optimizer-0.0.4 | spec/unit/veritas/optimizer/algebra/extension/order_operand/optimizable_spec.rb |