Sha256: 938bc65eb2966634c4b57e089405cd748e2110d7bcd98bddf9643b733347e433
Contents?: true
Size: 1.17 KB
Versions: 1
Compression:
Stored size: 1.17 KB
Contents
require 'spec_helper' describe 'Veritas::Optimizer::Logic::Connective::Disjunction::OptimizableToInclusion#optimize' do subject { object.optimize } let(:klass) { Optimizer::Logic::Connective::Disjunction::OptimizableToInclusion } let(:attribute) { Attribute::Integer.new(:id) } let(:connective) { left.or(right) } let(:object) { klass.new(connective) } before do object.operation.should be_kind_of(Logic::Connective::Disjunction) end context 'when the right operands are optimizable' do let(:left) { attribute.eq(2) } let(:right) { attribute.eq(1) } it { should be_kind_of(Logic::Predicate::Inclusion) } its(:left) { should equal(attribute) } # enumerable order is normalized its(:right) { should == [ 1, 2 ] } end context 'when the right operands are not optimizable' do let(:left) { attribute.eq(1) } let(:right) { attribute.eq(2) } it { should be_kind_of(Logic::Predicate::Inclusion) } its(:left) { should equal(attribute) } its(:right) { should == [ 1, 2 ] } end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
veritas-0.0.2 | spec/unit/veritas/optimizer/logic/connective/disjunction/optimizable_to_inclusion/optimize_spec.rb |