aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2006-11-30 21:45:31 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2006-11-30 21:45:31 +0000
commit8dca6586ded76d5950b4fccfb720e2861efede6d (patch)
tree4a3e38a9ba2667245d6ea4bfd8e23fa5179b2848 /actionpack/test/template
parentec75642e137a8682b099009ab205f764fe70c51e (diff)
downloadrails-8dca6586ded76d5950b4fccfb720e2861efede6d.tar.gz
rails-8dca6586ded76d5950b4fccfb720e2861efede6d.tar.bz2
rails-8dca6586ded76d5950b4fccfb720e2861efede6d.zip
Fixed that script/server running against Mongrel should tail the proper log regardless of the environment [DHH]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5652 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/test/template')
-rw-r--r--actionpack/test/template/form_helper_test.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/actionpack/test/template/form_helper_test.rb b/actionpack/test/template/form_helper_test.rb
index a7ceb6b30f..f7d51b2f2d 100644
--- a/actionpack/test/template/form_helper_test.rb
+++ b/actionpack/test/template/form_helper_test.rb
@@ -163,6 +163,12 @@ 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")