summaryrefslogtreecommitdiffstats
path: root/test/json/test_json_rails.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-24 17:44:39 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-24 17:44:39 +0000
commit3454e2b989d541a1b6dfa0e5f6432cce17cc16d7 (patch)
treeb57bc2afea00aa87978f691526dd7adc1b8a067d /test/json/test_json_rails.rb
parent67f7cf01b9a126710761dd1f7e3c7a96e74ce621 (diff)
downloadruby-3454e2b989d541a1b6dfa0e5f6432cce17cc16d7.tar.gz
ruby-3454e2b989d541a1b6dfa0e5f6432cce17cc16d7.tar.xz
ruby-3454e2b989d541a1b6dfa0e5f6432cce17cc16d7.zip
* test: assert_raises has been deprecated since a long time ago.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19536 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/json/test_json_rails.rb')
-rw-r--r--test/json/test_json_rails.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/json/test_json_rails.rb b/test/json/test_json_rails.rb
index c0447ddab..52dc29f38 100644
--- a/test/json/test_json_rails.rb
+++ b/test/json/test_json_rails.rb
@@ -85,7 +85,7 @@ class TC_JSONRails < Test::Unit::TestCase
c = C.new # with rails addition all objects are theoretically creatable
assert C.json_creatable?
json = generate(c)
- assert_raises(ArgumentError) { JSON.parse(json) }
+ assert_raise(ArgumentError) { JSON.parse(json) }
end
def test_raw_strings