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

test_timeout.rb: exact messages

* test/test_timeout.rb (test_rescue_exit, test_custom_exception):
  assert with exact messages.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52433 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2015-11-03 12:15:31 +00:00
parent ce58200fb7
commit e0d6328ff4

View file

@ -49,7 +49,7 @@ class TestTimeout < Test::Unit::TestCase
end
end
end
assert_raise_with_message(exc, /execution expired/) {raise e if e}
assert_raise_with_message(exc, 'execution expired') {raise e if e}
end
def test_custom_exception
@ -60,7 +60,7 @@ class TestTimeout < Test::Unit::TestCase
assert_nothing_raised(ArgumentError, bug9354) do
assert_equal(:ok, Timeout.timeout(100, err) {:ok})
end
assert_raise_with_message(err, /execution expired/) do
assert_raise_with_message(err, 'execution expired') do
Timeout.timeout 0.01, err do
sleep 3
end