Sha256: a248657248b2558bd45a3f891974bbc942a60219b1e7016f353ae175adb7afc9
Contents?: true
Size: 1.71 KB
Versions: 1
Compression:
Stored size: 1.71 KB
Contents
require 'spec_helper' require 'integration/numeric_validator/spec_helper' describe 'DataMapper::Validate::Fixtures::BasketballCourt' do before :all do DataMapper::Validate::Fixtures::BasketballCourt.auto_migrate! end describe "with valid set of attributes" do before :all do @model = DataMapper::Validate::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::Validate::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::Validate::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::Validate::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::Validate::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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
dm-validations-0.10.2 | spec/integration/numeric_validator/equality_with_float_type_spec.rb |