Sha256: 92c24edb9437e3af132c93a28ba509f3c604a03a56888a2954cad6f0e4c495ed
Contents?: true
Size: 1.17 KB
Versions: 1
Compression:
Stored size: 1.17 KB
Contents
require 'spec_helper' describe 'Veritas::Optimizer::Logic::Connective::Conjunction::OptimizableToExclusion#optimize' do subject { object.optimize } let(:klass) { Optimizer::Logic::Connective::Conjunction::OptimizableToExclusion } let(:attribute) { Attribute::Integer.new(:id) } let(:connective) { left.and(right) } let(:object) { klass.new(connective) } before do object.operation.should be_kind_of(Logic::Connective::Conjunction) end context 'when the right operands are optimizable' do let(:left) { attribute.ne(2) } let(:right) { attribute.ne(1) } it { should be_kind_of(Logic::Predicate::Exclusion) } 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.ne(1) } let(:right) { attribute.ne(2) } it { should be_kind_of(Logic::Predicate::Exclusion) } 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/conjunction/optimizable_to_exclusion/optimize_spec.rb |