Sha256: b7f9cd34211050837cdc33f663f9ea0164305bea3f7df67a318093435a689f84

Contents?: true

Size: 1.04 KB

Versions: 2

Compression:

Stored size: 1.04 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe Optimizer::Function::Predicate::Comparable::NormalizableOperands, '#optimizable?' do
  subject { object.optimizable? }

  let(:attribute) { Attribute::Integer.new(:id)                    }
  let(:predicate) { Function::Predicate::Equality.new(left, right) }
  let(:object)    { described_class.new(predicate)                 }

  before do
    expect(predicate).to be_kind_of(Function::Predicate::Comparable)
  end

  context 'when left and right is a constant' do
    let(:left)  { 1 }
    let(:right) { 1 }

    it { should be(false) }
  end

  context 'when left and right is an attribute' do
    let(:left)  { attribute }
    let(:right) { attribute }

    it { should be(false) }
  end

  context 'when left is a constant and right is an attribute' do
    let(:left)  { 1         }
    let(:right) { attribute }

    it { should be(true) }
  end

  context 'when left is an attribute and right is a constant' do
    let(:left)  { attribute }
    let(:right) { 1         }

    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/function/predicate/comparable/normalizable_operands/optimizable_predicate_spec.rb
axiom-optimizer-0.1.1 spec/unit/axiom/optimizer/function/predicate/comparable/normalizable_operands/optimizable_predicate_spec.rb