Skip to content

Commit

Permalink
Merge pull request rails#4369 from lest/remove-warnings
Browse files Browse the repository at this point in the history
use stub instead of redefining method to suppress warnings
  • Loading branch information
drogus committed Jan 7, 2012
2 parents f082004 + f1b05de commit ba168e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions actionpack/test/template/form_helper_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit ba168e8

Please sign in to comment.