diff options
author | Sjoerd Andringa <sjoerd.andringa@innovationfactory.nl> | 2011-02-13 00:56:04 +0100 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2011-02-12 22:22:18 -0200 |
commit | 95a5bd87cb542c534b7f2490dcfa687a1bfeec43 (patch) | |
tree | 9876343025d06f01bc240163ab2c163bc9ca145f /actionpack/test/template | |
parent | d72add9c20778e253f90fbfe587eae0e205c40ad (diff) | |
download | rails-95a5bd87cb542c534b7f2490dcfa687a1bfeec43.tar.gz rails-95a5bd87cb542c534b7f2490dcfa687a1bfeec43.tar.bz2 rails-95a5bd87cb542c534b7f2490dcfa687a1bfeec43.zip |
Added time_tag helper to AP for HTML5 time tag [#5919 state:resolved]
Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
Diffstat (limited to 'actionpack/test/template')
-rw-r--r-- | actionpack/test/template/date_helper_test.rb | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/actionpack/test/template/date_helper_test.rb b/actionpack/test/template/date_helper_test.rb index 55c384e68f..bb72185595 100644 --- a/actionpack/test/template/date_helper_test.rb +++ b/actionpack/test/template/date_helper_test.rb @@ -2699,7 +2699,27 @@ class DateHelperTest < ActionView::TestCase assert date_select("post", "written_on", :default => Time.local(2006, 9, 19, 15, 16, 35), :include_blank => true).html_safe? assert time_select("post", "written_on", :ignore_date => true).html_safe? end - + + def test_time_tag_with_date + date = Date.today + expected = "<time datetime=\"#{date.rfc3339}\">#{I18n.l(date, :format => :long)}</time>" + assert_equal expected, time_tag(date) + end + + def test_time_tag_with_time + time = Time.now + expected = "<time datetime=\"#{time.xmlschema}\">#{I18n.l(time, :format => :long)}</time>" + assert_equal expected, time_tag(time) + end + + def test_time_tag_pubdate_option + assert_match /<time.*pubdate="pubdate">.*<\/time>/, time_tag(Time.now, :pubdate => true) + end + + def test_time_tag_with_given_text + assert_match /<time.*>Right now<\/time>/, time_tag(Time.now, 'Right now') + end + protected def with_env_tz(new_tz = 'US/Eastern') old_tz, ENV['TZ'] = ENV['TZ'], new_tz |