aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/json/encoding_test.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2012-05-29 21:22:55 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2012-05-29 21:22:55 -0700
commit70bc0d7a4f60ee9c5ca7538eb55b4dae96d7a985 (patch)
tree0fc5d6e806f71a504811f3338dbfba8b5ddb9239 /activesupport/test/json/encoding_test.rb
parent669694fe888053ccc86e9a9d1d19adb8dba5fafb (diff)
parent1e335ad1380f85e016260a8a3e38013376e1c109 (diff)
downloadrails-70bc0d7a4f60ee9c5ca7538eb55b4dae96d7a985.tar.gz
rails-70bc0d7a4f60ee9c5ca7538eb55b4dae96d7a985.tar.bz2
rails-70bc0d7a4f60ee9c5ca7538eb55b4dae96d7a985.zip
Merge pull request #6546 from erichmenge/patch-as-json
True, False, and Nil should be represented in as_json as themselves.
Diffstat (limited to 'activesupport/test/json/encoding_test.rb')
-rw-r--r--activesupport/test/json/encoding_test.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/activesupport/test/json/encoding_test.rb b/activesupport/test/json/encoding_test.rb
index 0566ebf291..212ee262a3 100644
--- a/activesupport/test/json/encoding_test.rb
+++ b/activesupport/test/json/encoding_test.rb
@@ -285,6 +285,12 @@ class TestJSONEncoding < ActiveSupport::TestCase
end
end
+ def test_nil_true_and_false_represented_as_themselves
+ assert_equal nil, nil.as_json
+ assert_equal true, true.as_json
+ assert_equal false, false.as_json
+ end
+
protected
def object_keys(json_object)