Sha256: ed343926a3647873b5c3cb6305f80206863119a10fdb11bc2b2ce289719acb67

Contents?: true

Size: 814 Bytes

Versions: 3

Compression:

Stored size: 814 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

describe Optimizer::Relation::Operation::Unary::OrderOperand, '#optimizable?' do
  subject { object.optimizable? }

  let(:described_class) { Class.new(Optimizer::Relation::Operation::Unary) }
  let(:base)            { Relation.new([ [ :id, Integer ] ], [].each)      }
  let(:relation)        { operand.project([])                              }
  let(:object)          { described_class.new(relation)                    }

  before do
    described_class.class_eval { include Optimizer::Relation::Operation::Unary::OrderOperand }
  end

  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

3 entries across 3 versions & 1 rubygems

Version Path
veritas-optimizer-0.0.7 spec/unit/veritas/optimizer/relation/operation/unary/order_operand/optimizable_spec.rb
veritas-optimizer-0.0.6 spec/unit/veritas/optimizer/relation/operation/unary/order_operand/optimizable_spec.rb
veritas-optimizer-0.0.5 spec/unit/veritas/optimizer/relation/operation/unary/order_operand/optimizable_spec.rb