From 0cce17f811a7e5217e667b40c44f788e3559f790 Mon Sep 17 00:00:00 2001
From: David Heinemeier Hansson
Date: Mon, 13 Dec 2004 11:08:21 +0000
Subject: Updated unit tests to reflect lowercase post as method in form tags
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@141 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
---
actionpack/test/template/active_record_helper_test.rb | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
(limited to 'actionpack')
diff --git a/actionpack/test/template/active_record_helper_test.rb b/actionpack/test/template/active_record_helper_test.rb
index 5bae7ee6b5..f9a2727067 100644
--- a/actionpack/test/template/active_record_helper_test.rb
+++ b/actionpack/test/template/active_record_helper_test.rb
@@ -71,7 +71,7 @@ class ActiveRecordHelperTest < Test::Unit::TestCase
def test_form_with_string
assert_equal(
- %(
),
+ %(),
form("post")
)
end
@@ -80,7 +80,7 @@ class ActiveRecordHelperTest < Test::Unit::TestCase
def Post.content_columns() [ Column.new(:date, "written_on", "Written on") ] end
assert_equal(
- %(),
+ %(),
form("post")
)
end
@@ -90,7 +90,7 @@ class ActiveRecordHelperTest < Test::Unit::TestCase
@post.written_on = Time.gm(2004, 6, 15, 16, 30)
assert_equal(
- %(),
+ %(),
form("post")
)
end
--
cgit v1.2.3