1
0
Fork 0
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:
Xavier Noria 2010-08-18 00:25:32 +02:00
commit a0ca3d1067
2 changed files with 3 additions and 3 deletions

View file

@ -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
#

View file

@ -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+|