
Inferred validates_length_of Range should use within
Reported by Brian Rose | March 2nd, 2008 @ 05:26 PM
Given:
class User < DataMapper::Model
property :username, :string, :index => :unique, :nullable => false, :length => 4..25
end
DataMapper will infer:
validates_length_of :username, :minimum => 4, :maximum => 25
It should infer:
validates_length_of :username, :within => 4..25
See attached patch (created against Sam's dm git repo).
Comments and changes to this ticket
-
Dan Kubb (dkubb) April 15th, 2008 @ 03:32 AM
- Milestone cleared.
-
Sam Smoot April 28th, 2008 @ 01:08 PM
- Assigned user set to Adam French
Sounds good to me. Brian, do you want commit bits? Other than that, in the mean-time, can you apply this Adam?
-
Adam French April 29th, 2008 @ 03:13 PM
- State changed from new to resolved
no longer applies to dm-core, since dm-validations is in dm-more now.
BUT it did apply cleanly to svn's dm0.3.x branch, so I applied it there.
Please Sign in or create a free account to add a new ticket.
With your very own profile, you can contribute to projects, track your activity, watch tickets, receive and update tickets through your email and much more.
Create your profile
Help contribute to this project by taking a few moments to create your personal profile. Create your profile »