From 289d6bb30f4c2fffa2437436030c889f10522e72 Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 9 Oct 2013 08:41:13 +0000 Subject: test: use assert_raise * test/ruby, test/-ext-: use assert_raise instead of assert_raises. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43211 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_module.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/ruby/test_module.rb') diff --git a/test/ruby/test_module.rb b/test/ruby/test_module.rb index 144b75d9f7..ddaf6777b4 100644 --- a/test/ruby/test_module.rb +++ b/test/ruby/test_module.rb @@ -248,7 +248,7 @@ class TestModule < Test::Unit::TestCase ":", ["String::", "[Bug #7573]"], ].each do |name, msg| - e = assert_raises(NameError, "#{msg}#{': ' if msg}wrong constant name #{name.dump}") { + e = assert_raise(NameError, "#{msg}#{': ' if msg}wrong constant name #{name.dump}") { Object.const_get name } assert_equal("wrong constant name %s" % name, e.message) @@ -296,7 +296,7 @@ class TestModule < Test::Unit::TestCase end def test_nested_bad_class - assert_raises(TypeError) do + assert_raise(TypeError) do self.class.const_get([User, 'USER', 'Foo'].join('::')) end end @@ -1656,7 +1656,7 @@ class TestModule < Test::Unit::TestCase @@foo $foo ].each do |name| - assert_raises(NameError) do + assert_raise(NameError) do Module.new { attr_accessor name.to_sym } end end -- cgit v1.2.3