diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2006-11-30 22:01:58 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2006-11-30 22:01:58 +0000 |
commit | 033a5148eb03a6b4a3441cdf0c4cbda357c6d702 (patch) | |
tree | f984b8a994b6426c266a7670bbe17dc9221ff287 /actionpack/test/template | |
parent | 8dca6586ded76d5950b4fccfb720e2861efede6d (diff) | |
download | rails-033a5148eb03a6b4a3441cdf0c4cbda357c6d702.tar.gz rails-033a5148eb03a6b4a3441cdf0c4cbda357c6d702.tar.bz2 rails-033a5148eb03a6b4a3441cdf0c4cbda357c6d702.zip |
Premature commit
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5653 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/test/template')
-rw-r--r-- | actionpack/test/template/form_helper_test.rb | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/actionpack/test/template/form_helper_test.rb b/actionpack/test/template/form_helper_test.rb index f7d51b2f2d..a7ceb6b30f 100644 --- a/actionpack/test/template/form_helper_test.rb +++ b/actionpack/test/template/form_helper_test.rb @@ -163,12 +163,6 @@ class FormHelperTest < Test::Unit::TestCase ) end - def test_label - assert_dom_equal('<label for="post_body">Body</label>', label("post", "body")) - assert_dom_equal('<label for="post_body">Super body</label>', label("post", "body", :text => "Super body")) - assert_dom_equal('<label for="post_body" class="strong">Super body</label>', label("post", "body", :text => "Super body", :class => "strong")) - end - def test_explicit_name assert_dom_equal( '<input id="post_title" name="dont guess" size="30" type="text" value="Hello World" />', text_field("post", "title", "name" => "dont guess") |