aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template/erb/form_for_test.rb
blob: 482dbb0287739400e4eb3165f08f43f27806259a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
require "abstract_unit"
require "template/erb/helper"

module ERBTest
  class TagHelperTest < BlockTestCase
    test "form_for works" do
      output = render_content "form_for(:staticpage, :url => {:controller => 'blah', :action => 'update'})", ""
      assert_equal "<form action=\"/blah/update\" method=\"post\"></form>", output
    end
  end
end