summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/integration/api_test/api_test.rb12
1 files changed, 11 insertions, 1 deletions
diff --git a/test/integration/api_test/api_test.rb b/test/integration/api_test/api_test.rb
index 1387fa905..b81f8e0ad 100644
--- a/test/integration/api_test/api_test.rb
+++ b/test/integration/api_test/api_test.rb
@@ -34,4 +34,14 @@ class Redmine::ApiTest::ApiTest < Redmine::ApiTest::Base
ensure
ActionController::Base.allow_forgery_protection = false
end
-end \ No newline at end of file
+
+ def test_json_datetime_format
+ get '/users/1.json', {}, credentials('admin')
+ assert_include '"created_on":"2006-07-19T17:12:21Z"', response.body
+ end
+
+ def test_xml_datetime_format
+ get '/users/1.xml', {}, credentials('admin')
+ assert_include '<created_on>2006-07-19T17:12:21Z</created_on>', response.body
+ end
+end