diff options
author | Santiago Pastorino <santiago@wyeworks.com> | 2011-02-13 02:10:13 -0200 |
---|---|---|
committer | Santiago Pastorino <santiago@wyeworks.com> | 2011-02-13 02:10:13 -0200 |
commit | 944d314244676932eb1aa285d23f7d91f0678e68 (patch) | |
tree | 804bd0d58e1b3311bbab5df02f68e26df7e0100d /activesupport/test/core_ext | |
parent | fbd917f50a6046d02dd6a64ccfb1aed0cbce68d8 (diff) | |
download | rails-944d314244676932eb1aa285d23f7d91f0678e68.tar.gz rails-944d314244676932eb1aa285d23f7d91f0678e68.tar.bz2 rails-944d314244676932eb1aa285d23f7d91f0678e68.zip |
Add Date#rfc3339 and Date#iso8601 to AS
Diffstat (limited to 'activesupport/test/core_ext')
-rw-r--r-- | activesupport/test/core_ext/date_ext_test.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/activesupport/test/core_ext/date_ext_test.rb b/activesupport/test/core_ext/date_ext_test.rb index 342a31cdef..b4d7633e5f 100644 --- a/activesupport/test/core_ext/date_ext_test.rb +++ b/activesupport/test/core_ext/date_ext_test.rb @@ -376,6 +376,16 @@ class DateExtCalculationsTest < ActiveSupport::TestCase end end + if RUBY_VERSION < '1.9' + def test_rfc3339 + assert_equal('1980-02-28', Date.new(1980, 2, 28).rfc3339) + end + + def test_iso8601 + assert_equal('1980-02-28', Date.new(1980, 2, 28).iso8601) + end + end + def test_today Date.stubs(:current).returns(Date.new(2000, 1, 1)) assert_equal false, Date.new(1999, 12, 31).today? |