提交 ba168e8f 编写于 作者: P Piotr Sarnacki

Merge pull request #4369 from lest/remove-warnings

use stub instead of redefining method to suppress warnings
......@@ -875,7 +875,7 @@ def test_form_for_with_remote_in_html
def test_form_for_with_remote_without_html
@post.persisted = false
def @post.to_key; nil; end
@post.stubs(:to_key).returns(nil)
form_for(@post, :remote => true) do |f|
concat f.text_field(:title)
concat f.text_area(:body)
......@@ -1025,7 +1025,7 @@ def test_submit_with_object_as_new_record_and_locale_strings
old_locale, I18n.locale = I18n.locale, :submit
@post.persisted = false
def @post.to_key; nil; end
@post.stubs(:to_key).returns(nil)
form_for(@post) do |f|
concat f.submit
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册