require File.dirname(__FILE__) + '/spec_helper' describe 'non-empty int variable', :shared => true do it 'should have min equal to the lower domain bound' do @var.min.should equal(@domain.min) end it 'should have max equal to the upper domain bound' do @var.max.should equal(@domain.max) end it 'should have size equal to the domain size' do @var.size.should equal(@domain.size) end it 'should contain every element in its domain' do @domain.each do |i| @var.should include(i) end end it 'should not contain elements outside its domain' do @var.should_not include(@domain.min - 1) @var.should_not include(@domain.max + 1) end it 'should have a width equal to the domain width' do @var.width.should equal(@domain.max - @domain.min + 1) end it 'should give a NoMethodError when calling a method that doesn\'t exist' do lambda{ @var.this_method_does_not_exists }.should raise_error(NoMethodError) end it 'should have a zero degree' do @var.degree.should be_zero end end describe Gecode::FreeIntVar, ' (with range domain of size > 1)' do before do @range = -4..3 @domain = @range.to_a model = Gecode::Model.new @var = model.int_var(@range) end it_should_behave_like 'non-empty int variable' it 'should not be assigned' do @var.should_not be_assigned end it 'should have a range domain' do @var.should be_range end it 'should raise error when trying to access assigned value' do lambda{ @var.value }.should raise_error(RuntimeError) end end describe Gecode::FreeIntVar, ' (defined with three-dot range)' do before do @range = -4...3 @domain = @range.to_a model = Gecode::Model.new @var = model.int_var(@range) end it_should_behave_like 'non-empty int variable' end describe Gecode::FreeIntVar, ' (with non-range domain of size > 1)' do before do @domain = [-3, -2, -1, 1] model = Gecode::Model.new @var = model.int_var(*@domain) end it_should_behave_like 'non-empty int variable' it 'should not be assigned' do @var.should_not be_assigned end it 'should not be a range domain' do @var.should_not be_range end it 'should not contain the domain\'s holes' do @var.should_not include(0) end end describe Gecode::FreeIntVar, ' (with a domain of size 1)' do before do @domain = [1] model = Gecode::Model.new @var = model.int_var(*@domain) end it_should_behave_like 'non-empty int variable' it 'should be assigned' do @var.should be_assigned end it 'should be a range domain' do @var.should be_range end end describe Gecode::FreeIntVar, ' (assigned)' do before do @domain = [1] model = Gecode::Model.new @var = model.int_var(*@domain) end it 'should be assigned' do @var.should be_assigned end it 'should give the assigned number when inspecting' do @var.inspect.should include(" #{@domain[0]}>") end end describe Gecode::FreeIntVar, ' (not assigned)' do before do @domain = 1..2 model = Gecode::Model.new @var = model.int_var(*@domain) end it 'should not be assigned' do @var.should_not be_assigned end it 'should give the domain range when inspecting' do @var.inspect.should include(" #{@domain.first}..#{@domain.last}>") end end