Sha256: 4772f7544c8bedc0c24d00f10aa24a11927d95bfc6bcc0fe5f76311a7de1f50b

Contents?: true

Size: 1.56 KB

Versions: 2

Compression:

Stored size: 1.56 KB

Contents

# encoding: utf-8

require 'spec_helper'

describe Optimizer::Function::Predicate::Exclusion::OneRight, '#optimize' do
  subject { object.optimize }

  let(:attribute) { Attribute::Integer.new(:id)    }
  let(:predicate) { attribute.exclude(operand)     }
  let(:object)    { described_class.new(predicate) }

  before do
    expect(object).to be_optimizable
  end

  context 'when the operand contains a one entry Enumerable' do
    let(:operand) { [1] }

    it { should be_kind_of(Function::Predicate::Inequality) }

    its(:left) { should be(attribute) }

    its(:right) { should == 1 }
  end

  context 'when the operand contains a one entry inclusive Range' do
    let(:operand) { 1..1 }

    it { should be_kind_of(Function::Predicate::Inequality) }

    its(:left) { should be(attribute) }

    its(:right) { should == 1 }
  end

  context 'when the operand contains a one entry exclusive Range' do
    let(:operand) { 1...2 }

    it { should be_kind_of(Function::Predicate::Inequality) }

    its(:left) { should be(attribute) }

    its(:right) { should == 1 }
  end

  context 'when the operand contains one entry after filtering invalid entries' do
    let(:operand) { ['a', 1] }

    it { should be_kind_of(Function::Predicate::Inequality) }

    its(:left) { should be(attribute) }

    its(:right) { should == 1 }
  end

  context 'when the operand contains one entry after filtering duplicate entries' do
    let(:operand) { [1, 1] }

    it { should be_kind_of(Function::Predicate::Inequality) }

    its(:left) { should be(attribute) }

    its(:right) { should == 1 }
  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/exclusion/one_right/optimize_spec.rb
axiom-optimizer-0.1.1 spec/unit/axiom/optimizer/function/predicate/exclusion/one_right/optimize_spec.rb