Revert "Revert "New password default minimum length is now 8""

This reverts commit b1f490a2f8.
Actually, the implementation was good!
This commit is contained in:
José Valim 2012-07-24 23:41:17 +02:00
parent b1f490a2f8
commit bdf0bc7b1e
3 changed files with 5 additions and 5 deletions

View File

@ -91,7 +91,7 @@ module Devise
# Range validation for password length
mattr_accessor :password_length
@@password_length = 8..128
@@password_length = 6..128
# The time the user will be remembered without asking for credentials again.
mattr_accessor :remember_for

View File

@ -122,7 +122,7 @@ Devise.setup do |config|
# ==> Configuration for :validatable
# Range for password length. Default is 8..128.
# config.password_length = 8..128
config.password_length = 8..128
# Email regex used to validate email formats. It simply asserts that
# an one (and only one) @ exists in the given string. This is mainly

View File

@ -76,10 +76,10 @@ class ValidatableTest < ActiveSupport::TestCase
assert_equal 'doesn\'t match confirmation', user.errors[:password].join
end
test 'should require a password with minimum of 8 characters' do
user = new_user(:password => '1234567', :password_confirmation => '1234567')
test 'should require a password with minimum of 6 characters' do
user = new_user(:password => '12345', :password_confirmation => '12345')
assert user.invalid?
assert_equal 'is too short (minimum is 8 characters)', user.errors[:password].join
assert_equal 'is too short (minimum is 6 characters)', user.errors[:password].join
end
test 'should require a password with maximum of 128 characters long' do