diff options
author | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2013-03-18 08:43:38 -0700 |
---|---|---|
committer | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2013-03-18 08:43:38 -0700 |
commit | 2ce4af485a698ca6db5d45448529ae38c23f60fe (patch) | |
tree | b60fc05f27556241226d80e70cf6759765cb98f8 /actionpack | |
parent | f08edab95f6aa6fab2027142f8e5b01d0d28dd4c (diff) | |
parent | 85261a5e96ca4b7a03899faf8e04a3e0cb5567e2 (diff) | |
download | rails-2ce4af485a698ca6db5d45448529ae38c23f60fe.tar.gz rails-2ce4af485a698ca6db5d45448529ae38c23f60fe.tar.bz2 rails-2ce4af485a698ca6db5d45448529ae38c23f60fe.zip |
Merge pull request #9766 from senny/remove_ancient_todos
Remove ancient TODOs [ci skip]
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/test/controller/output_escaping_test.rb | 2 | ||||
-rw-r--r-- | actionpack/test/template/url_helper_test.rb | 1 |
2 files changed, 0 insertions, 3 deletions
diff --git a/actionpack/test/controller/output_escaping_test.rb b/actionpack/test/controller/output_escaping_test.rb index 43a8c05cda..c3c549fbfc 100644 --- a/actionpack/test/controller/output_escaping_test.rb +++ b/actionpack/test/controller/output_escaping_test.rb @@ -11,8 +11,6 @@ class OutputEscapingTest < ActiveSupport::TestCase end test "escapeHTML shouldn't touch explicitly safe strings" do - # TODO this seems easier to compose and reason about, but - # this should be verified assert_equal "<", ERB::Util.h("<".html_safe) end diff --git a/actionpack/test/template/url_helper_test.rb b/actionpack/test/template/url_helper_test.rb index 5d87c96605..e359f47975 100644 --- a/actionpack/test/template/url_helper_test.rb +++ b/actionpack/test/template/url_helper_test.rb @@ -51,7 +51,6 @@ class UrlHelperTest < ActiveSupport::TestCase assert_equal 'javascript:history.back()', url_for(:back) end - # TODO: missing test cases def test_button_to_with_straight_url 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 |