Sha256: 70bcc4a217ff90b68c7379406a65c77004cd731052c2db5b4c7bbbb806690bfb
Contents?: true
Size: 1.13 KB
Versions: 5
Compression:
Stored size: 1.13 KB
Contents
# encoding: utf-8 require 'spec_helper' describe Optimizer::Function::Predicate::LessThanOrEqualTo::Tautology, '#optimizable?' do subject { object.optimizable? } let(:attribute) { Attribute::Integer.new(:id) } let(:predicate) { left.lte(right) } let(:object) { described_class.new(predicate) } before do predicate.should be_kind_of(Function::Predicate::LessThanOrEqualTo) end context 'when left and right are equal' do let(:left) { attribute } let(:right) { attribute } it { should be(true) } end context 'when left and right are different types' do let(:left) { attribute } let(:right) { Attribute::String.new(:name) } it { should be(false) } end context 'when left is always less than right' do let(:left) { Attribute::Integer.new(:id, :size => 1..9) } let(:right) { Attribute::Integer.new(:id, :size => 10..20) } it { should be(true) } end context 'when left is not equivalent to the right' do let(:left) { attribute } let(:right) { Attribute::String.new(:name) } it { should be(false) } end end
Version data entries
5 entries across 5 versions & 2 rubygems