Browse Source

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
tags/1.4.0
Toshi MARUYAMA 12 years ago
parent
commit
420e70180c
1 changed files with 14 additions and 0 deletions
  1. 14
    0
      test/unit/user_preference_test.rb

+ 14
- 0
test/unit/user_preference_test.rb 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

Loading…
Cancel
Save