mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Merge remote branch 'docrails/master'
This commit is contained in:
commit
a0ca3d1067
2 changed files with 3 additions and 3 deletions
|
@ -28,7 +28,7 @@ module ActiveModel
|
|||
# class EmailValidator < ActiveModel::EachValidator
|
||||
# def validate_each(record, attribute, value)
|
||||
# record.errors[attribute] << (options[:message] || "is not an email") unless
|
||||
# value =~ /^([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})$/i
|
||||
# value =~ /\A([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})\z/i
|
||||
# end
|
||||
# end
|
||||
#
|
||||
|
@ -48,7 +48,7 @@ module ActiveModel
|
|||
#
|
||||
# class TitleValidator < ActiveModel::EachValidator
|
||||
# def validate_each(record, attribute, value)
|
||||
# record.errors[attribute] << "must start with 'the'" unless =~ /^the/i
|
||||
# record.errors[attribute] << "must start with 'the'" unless value =~ /\Athe/i
|
||||
# end
|
||||
# end
|
||||
#
|
||||
|
|
|
@ -735,7 +735,7 @@ You don't need to set up and run your tests by hand on a test-by-test basis. Rai
|
|||
|+rake test:plugins+ |Run all the plugin tests from +vendor/plugins/*/**/test+ (or specify with +PLUGIN=_name_+)|
|
||||
|+rake test:profile+ |Profile the performance tests|
|
||||
|+rake test:recent+ |Tests recent changes|
|
||||
|+rake test:uncommitted+ |Runs all the tests which are uncommitted. Only supports Subversion|
|
||||
|+rake test:uncommitted+ |Runs all the tests which are uncommitted. Supports Subversion and Git|
|
||||
|+rake test:units+ |Runs all the unit tests from +test/unit+|
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue