aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/json
diff options
context:
space:
mode:
authorRick Olson <technoweenie@gmail.com>2008-04-01 20:25:26 +0000
committerRick Olson <technoweenie@gmail.com>2008-04-01 20:25:26 +0000
commit1eb57a6870cbaa0f965f1c1cf7681a67785e71b0 (patch)
tree329bceef9208beeae74d7f043f1a3fcb8aafb3aa /activesupport/test/json
parentd450ac4459165e3af6e45798a6afeac1876f3bc4 (diff)
downloadrails-1eb57a6870cbaa0f965f1c1cf7681a67785e71b0.tar.gz
rails-1eb57a6870cbaa0f965f1c1cf7681a67785e71b0.tar.bz2
rails-1eb57a6870cbaa0f965f1c1cf7681a67785e71b0.zip
Add config.active_support.use_standard_json_time_format setting so that Times and Dates export to ISO 8601 dates. [rick]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9203 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/test/json')
-rw-r--r--activesupport/test/json/encoding_test.rb15
1 files changed, 12 insertions, 3 deletions
diff --git a/activesupport/test/json/encoding_test.rb b/activesupport/test/json/encoding_test.rb
index 1cbd472a99..290232988a 100644
--- a/activesupport/test/json/encoding_test.rb
+++ b/activesupport/test/json/encoding_test.rb
@@ -35,10 +35,19 @@ class TestJSONEncoding < Test::Unit::TestCase
TimeTests = [[ Time.utc(2005,2,1,15,15,10), %("2005/02/01 15:15:10 +0000") ]]
DateTimeTests = [[ DateTime.civil(2005,2,1,15,15,10), %("2005/02/01 15:15:10 +0000") ]]
+ StandardDateTests = [[ Date.new(2005,2,1), %("2005-02-01") ]]
+ StandardTimeTests = [[ Time.utc(2005,2,1,15,15,10), %("2005-02-01T15:15:10Z") ]]
+ StandardDateTimeTests = [[ DateTime.civil(2005,2,1,15,15,10), %("2005-02-01T15:15:10+00:00") ]]
+
constants.grep(/Tests$/).each do |class_tests|
- define_method("test_#{class_tests[0..-6].downcase}") do
- self.class.const_get(class_tests).each do |pair|
- assert_equal pair.last, pair.first.to_json
+ define_method("test_#{class_tests[0..-6].underscore}") do
+ begin
+ ActiveSupport.use_standard_json_time_format = class_tests =~ /^Standard/
+ self.class.const_get(class_tests).each do |pair|
+ assert_equal pair.last, pair.first.to_json
+ end
+ ensure
+ ActiveSupport.use_standard_json_time_format = false
end
end
end