Sha256: ebb1dc6c6cf797c0b64ca525180fc52d05b4f828afd250cf6bb656527833395d

Contents?: true

Size: 721 Bytes

Versions: 1

Compression:

Stored size: 721 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

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

  let(:base)     { Relation.new([ [ :id, Integer ] ], [ [ 1 ] ].each).order }
  let(:relation) { operand.reverse                                          }
  let(:object)   { described_class.new(relation)                            }

  before do
    object.operation.should be_kind_of(Relation::Operation::Reverse)
  end

  context 'when the operand is reversed' do
    let(:operand) { base.drop(1).reverse }

    it { should be(true) }
  end

  context 'when the operand is not reversed' 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/relation/operation/reverse/reverse_operand/optimizable_spec.rb