git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@12126
e93f8b46-1217-0410-a6f0-
8f06a7374b81
end
def [](attr_name)
- if attribute_present? attr_name
+ if has_attribute? attr_name
super
else
others ? others[attr_name] : nil
end
def []=(attr_name, value)
- if attribute_present? attr_name
+ if has_attribute? attr_name
super
else
h = (read_attribute(:others) || {}).dup
assert_kind_of Hash, up.others
end
+ def test_others_should_be_blank_after_initialization
+ pref = User.new.pref
+ assert_equal({}, pref.others)
+ end
+
def test_reading_value_from_nil_others_hash
up = UserPreference.new(:user => User.new)
up.others = nil