1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

use assert_raise

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50727 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2015-06-02 02:18:44 +00:00
parent 21f2c194bb
commit ae042f21fb
30 changed files with 100 additions and 100 deletions

View file

@ -11,7 +11,7 @@ end
class TestSyslog < Test::Unit::TestCase
def test_new
assert_raises(NoMethodError) {
assert_raise(NoMethodError) {
Syslog.new
}
end
@ -37,7 +37,7 @@ class TestSyslog < Test::Unit::TestCase
assert_equal(Syslog::LOG_USER, Syslog.facility)
# open without close
assert_raises(RuntimeError) {
assert_raise(RuntimeError) {
Syslog.open
}
@ -88,7 +88,7 @@ class TestSyslog < Test::Unit::TestCase
end
def test_close
assert_raises(RuntimeError) {
assert_raise(RuntimeError) {
Syslog.close
}
end