Sha256: 7c65d766ca5e987ba33cf88c75450483517f34f6d3fb33b4c27b2ca0e316fce7
Contents?: true
Size: 926 Bytes
Versions: 1
Compression:
Stored size: 926 Bytes
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! @model = DataMapper::Validate::Fixtures::BasketballCourt.valid_instance @model.valid? end it_should_behave_like "valid model" describe "with three point line distance of 6.8" do before :all do @model.three_point_line_distance = 6.8 @model.valid? end it_should_behave_like "valid model" end describe "with three point line distance of 10.0" do before :all do @model.three_point_line_distance = 10.0 @model.valid? end it_should_behave_like "invalid model" it "has a meaningful error message" do @model.errors.on(:three_point_line_distance).should == [ 'Three point line distance must be less than 7.24' ] end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
dm-validations-0.10.2 | spec/integration/numeric_validator/lt_with_float_type_spec.rb |