Sha256: d63f58a112ad6f1c5afa7d36a5652d81a7099b333fa7f6a1bcf154c4d55173e4
Contents?: true
Size: 1.73 KB
Versions: 15
Compression:
Stored size: 1.73 KB
Contents
require 'spec_helper' require 'integration/numeric_validator/spec_helper' describe 'DataMapper::Validations::Fixtures::BasketballCourt' do before :all do DataMapper::Validations::Fixtures::BasketballCourt.auto_migrate! end describe "with valid set of attributes" do before :all do @model = DataMapper::Validations::Fixtures::BasketballCourt.valid_instance @model.valid? end it_should_behave_like "valid model" end describe "with rim height of 3.05" do before :all do @model = DataMapper::Validations::Fixtures::BasketballCourt.valid_instance(:rim_height => 3.05) @model.valid? end it_should_behave_like "valid model" end describe "with rim height of 3.30" do before :all do @model = DataMapper::Validations::Fixtures::BasketballCourt.valid_instance(:rim_height => 3.30) @model.valid? end it_should_behave_like "invalid model" it "has a meaningful error message" do @model.errors.on(:rim_height).should == [ 'Rim height must be equal to 3.05' ] end end describe "with free throw line distance of 4.57" do before :all do @model = DataMapper::Validations::Fixtures::BasketballCourt.valid_instance(:free_throw_line_distance => 4.57) @model.valid? end it_should_behave_like "valid model" end describe "with free throw line distance of 3.10" do before :all do @model = DataMapper::Validations::Fixtures::BasketballCourt.valid_instance(:free_throw_line_distance => 3.10) @model.valid? end it_should_behave_like "invalid model" it "has a meaningful error message" do @model.errors.on(:free_throw_line_distance).should == [ 'Free throw line distance must be equal to 4.57' ] end end end
Version data entries
15 entries across 15 versions & 3 rubygems