aboutsummaryrefslogtreecommitdiffstats
path: root/actionview
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2014-02-02 08:30:35 -0800
committerRafael Mendonça França <rafaelmfranca@gmail.com>2014-02-02 08:30:35 -0800
commit3e6d302ccc0b3bbb1527dbb83ea1834bd85b44a0 (patch)
tree89cb8a8129ccddc036fb396471c96a4bc7a5abf7 /actionview
parent4ac114471cc14de44b77ced3dd4a0676c13b818b (diff)
parent4b4db54e6b48813b24c807b0156eb58bc4694cd9 (diff)
downloadrails-3e6d302ccc0b3bbb1527dbb83ea1834bd85b44a0.tar.gz
rails-3e6d302ccc0b3bbb1527dbb83ea1834bd85b44a0.tar.bz2
rails-3e6d302ccc0b3bbb1527dbb83ea1834bd85b44a0.zip
Merge pull request #13924 from adomokos/adding_path_examples_to_button_to_tests
Adding a documentation example and a test to button_to with path
Diffstat (limited to 'actionview')
-rw-r--r--actionview/lib/action_view/helpers/url_helper.rb5
-rw-r--r--actionview/test/template/url_helper_test.rb7
2 files changed, 12 insertions, 0 deletions
diff --git a/actionview/lib/action_view/helpers/url_helper.rb b/actionview/lib/action_view/helpers/url_helper.rb
index 56dd7a4390..3ccace1274 100644
--- a/actionview/lib/action_view/helpers/url_helper.rb
+++ b/actionview/lib/action_view/helpers/url_helper.rb
@@ -232,6 +232,11 @@ module ActionView
# # <div><input value="New" type="submit" /></div>
# # </form>"
#
+ # <%= button_to "New", new_articles_path %>
+ # # => "<form method="post" action="/articles/new" class="button_to">
+ # # <div><input value="New" type="submit" /></div>
+ # # </form>"
+ #
# <%= button_to [:make_happy, @user] do %>
# Make happy <strong><%= @user.name %></strong>
# <% end %>
diff --git a/actionview/test/template/url_helper_test.rb b/actionview/test/template/url_helper_test.rb
index deba33510a..7e978e15d2 100644
--- a/actionview/test/template/url_helper_test.rb
+++ b/actionview/test/template/url_helper_test.rb
@@ -56,6 +56,13 @@ class UrlHelperTest < ActiveSupport::TestCase
assert_dom_equal %{<form method="post" action="http://www.example.com" class="button_to"><div><input type="submit" value="Hello" /></div></form>}, button_to("Hello", "http://www.example.com")
end
+ def test_button_to_with_path
+ assert_dom_equal(
+ %{<form method="post" action="/article/Hello" class="button_to"><div><input type="submit" value="Hello" /></div></form>},
+ button_to("Hello", article_path("Hello".html_safe))
+ )
+ end
+
def test_button_to_with_straight_url_and_request_forgery
self.request_forgery = true