aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template/date_helper_test.rb
diff options
context:
space:
mode:
authorPiotr Sarnacki <drogus@gmail.com>2011-12-26 04:09:35 -0800
committerPiotr Sarnacki <drogus@gmail.com>2011-12-26 04:09:35 -0800
commit76f0fa6066b78cd8f0e139dff4a7b65c96db5778 (patch)
treedbe1725d0b698dc15e42525771e9e9c438bd62f4 /actionpack/test/template/date_helper_test.rb
parent28cd098d99c52486aecb72aab39105d8abcd52ad (diff)
parentf7669cd8344a83485d01f94e7b5896616cd57f51 (diff)
downloadrails-76f0fa6066b78cd8f0e139dff4a7b65c96db5778.tar.gz
rails-76f0fa6066b78cd8f0e139dff4a7b65c96db5778.tar.bz2
rails-76f0fa6066b78cd8f0e139dff4a7b65c96db5778.zip
Merge pull request #4154 from nashby/include-blank-date-helper
a prompt string in include_blank option for date helpers
Diffstat (limited to 'actionpack/test/template/date_helper_test.rb')
-rw-r--r--actionpack/test/template/date_helper_test.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/actionpack/test/template/date_helper_test.rb b/actionpack/test/template/date_helper_test.rb
index fadfb59572..21c9083386 100644
--- a/actionpack/test/template/date_helper_test.rb
+++ b/actionpack/test/template/date_helper_test.rb
@@ -1581,6 +1581,26 @@ class DateHelperTest < ActionView::TestCase
assert_dom_equal expected, date_select("post", "written_on", :include_blank => true)
end
+ def test_date_select_with_stringified_blank
+ @post = Post.new
+
+ start_year = Time.now.year-5
+ end_year = Time.now.year+5
+
+ expected = '<input name="post[written_on(3i)]" type="hidden" id="post_written_on_3i"/>' + "\n"
+ expected << %{<select id="post_written_on_1i" name="post[written_on(1i)]">\n}
+ expected << "<option value=\"\">blank</option>\n"
+ start_year.upto(end_year) { |i| expected << %(<option value="#{i}">#{i}</option>\n) }
+ expected << "</select>\n"
+
+ expected << %{<select id="post_written_on_2i" name="post[written_on(2i)]">\n}
+ expected << "<option value=\"\">blank</option>\n"
+ 1.upto(12) { |i| expected << %(<option value="#{i}">#{Date::MONTHNAMES[i]}</option>\n) }
+ expected << "</select>\n"
+
+ assert_dom_equal expected, date_select("post", "written_on", :order=>[:year, :month], :include_blank=> 'blank')
+ end
+
def test_date_select_with_nil_and_blank_and_order
@post = Post.new