aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/json
diff options
context:
space:
mode:
authorkennyj <kennyj@gmail.com>2013-06-01 13:05:29 +0900
committerkennyj <kennyj@gmail.com>2013-06-01 21:23:19 +0900
commit6f3e01e8b78eff1b1685a0b35d70819376bfd773 (patch)
treeecc75a2a25b6a0fea2731dfdd4a7f155e3667f8b /activesupport/test/json
parentf2855f6ef17254718f625abba285841212dfbb87 (diff)
downloadrails-6f3e01e8b78eff1b1685a0b35d70819376bfd773.tar.gz
rails-6f3e01e8b78eff1b1685a0b35d70819376bfd773.tar.bz2
rails-6f3e01e8b78eff1b1685a0b35d70819376bfd773.zip
Remove active_support/json/variable was deprecated.
Diffstat (limited to 'activesupport/test/json')
-rw-r--r--activesupport/test/json/encoding_test.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/activesupport/test/json/encoding_test.rb b/activesupport/test/json/encoding_test.rb
index 14f4366f7b..ed1326705c 100644
--- a/activesupport/test/json/encoding_test.rb
+++ b/activesupport/test/json/encoding_test.rb
@@ -96,13 +96,6 @@ class TestJSONEncoding < ActiveSupport::TestCase
end
end
- def test_json_variable
- assert_deprecated do
- assert_equal ActiveSupport::JSON::Variable.new('foo'), 'foo'
- assert_equal ActiveSupport::JSON::Variable.new('alert("foo")'), 'alert("foo")'
- end
- end
-
def test_hash_encoding
assert_equal %({\"a\":\"b\"}), ActiveSupport::JSON.encode(:a => :b)
assert_equal %({\"a\":1}), ActiveSupport::JSON.encode('a' => 1)