Sha256: 422e2002f2d6976234def5331cd523ce1379c8c260aff901ee488a9db4785bae
Contents?: true
Size: 935 Bytes
Versions: 15
Compression:
Stored size: 935 Bytes
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! @model = DataMapper::Validations::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
15 entries across 15 versions & 3 rubygems