add unit test to ensure user preference others is hash in saving

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8069 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-12-04 06:43:48 +00:00
parent 1de2c1c2af
commit 420e70180c
1 changed files with 14 additions and 0 deletions

View File

@ -40,4 +40,18 @@ class UserPreferenceTest < ActiveSupport::TestCase
user.reload
assert_equal 'value', user.pref['preftest']
end
def test_others_hash
user = User.new(:firstname => "new", :lastname => "user", :mail => "newuser@somenet.foo")
user.login = "newuser"
user.password, user.password_confirmation = "password", "password"
assert user.save
assert_nil user.preference
up = UserPreference.new(:user => user)
assert_kind_of Hash, up.others
up.others = nil
assert_nil up.others
assert up.save
assert_kind_of Hash, up.others
end
end