提交 a995b9cd 编写于 作者: J Jeremy Kemper

Fix #inspect for new records. Closes #8405.

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6782 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
上级 81ee044f
......@@ -1814,7 +1814,7 @@ def attributes_before_type_cast
# Format attributes nicely for inspect.
def attribute_for_inspect(attr_name)
raise "Attribute not present #{attr_name}" unless has_attribute?(attr_name)
raise "Attribute not present #{attr_name}" unless has_attribute?(attr_name) || new_record?
value = read_attribute(attr_name)
if value.is_a?(String) && value.length > 50
......
......@@ -1651,6 +1651,10 @@ def test_inspect
assert_equal topic.inspect, %(#<Topic id: 1, title: "The First Topic", author_name: "David", author_email_address: "david@loudthinking.com", written_on: "#{topic.written_on.to_s(:db)}", bonus_time: "#{topic.bonus_time.to_s(:db)}", last_read: "#{topic.last_read.to_s(:db)}", content: "Have a nice day", approved: false, replies_count: 1, parent_id: nil, type: nil>)
end
def test_inspect_new
assert_match /Topic id: nil/, Topic.new.inspect
end
def test_attribute_for_inspect
t = topics(:first)
t.content = %(This is some really long content, longer than 50 characters, so I can test that text is truncated correctly by the new ActiveRecord::Base#inspect method! Yay! BOOM!)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册