Sha256: b1b0a46fbd07963c980f51711123e6920c226a4b1b86b7be34294f6ce016d415

Contents?: true

Size: 907 Bytes

Versions: 2

Compression:

Stored size: 907 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

describe Optimizer::Algebra::Projection::UnionOperand, '#optimizable?' do
  subject { object.optimizable? }

  let(:header)   { Relation::Header.coerce([[:id, Integer], [:name, String]])      }
  let(:left)     { Relation.new(header, LazyEnumerable.new([[1, 'Dan Kubb', 35]])) }
  let(:right)    { Relation.new(header, LazyEnumerable.new([[2, 'Dan Kubb', 35]])) }
  let(:relation) { operand.project([:id])                                          }
  let(:object)   { described_class.new(relation)                                   }

  before do
    expect(object.operation).to be_kind_of(Algebra::Projection)
  end

  context 'when the operand is a set operation' do
    let(:operand) { left.union(right) }

    it { should be(true) }
  end

  context 'when the operand is not a set operation' do
    let(:operand) { left }

    it { should be(false) }
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
axiom-optimizer-0.2.0 spec/unit/axiom/optimizer/algebra/projection/union_operand/optimizable_predicate_spec.rb
axiom-optimizer-0.1.1 spec/unit/axiom/optimizer/algebra/projection/union_operand/optimizable_predicate_spec.rb