From 8d7058db476b337210a3467298898c3a964d855d Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 10 Jul 2015 23:47:55 +0000 Subject: test_timeout.rb: add an assertion * test/test_timeout.rb (test_custom_exception): assert that the given exception will raise on timeout. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51214 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/test_timeout.rb | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'test/test_timeout.rb') diff --git a/test/test_timeout.rb b/test/test_timeout.rb index e4eba7f902..fcaf7154d7 100644 --- a/test/test_timeout.rb +++ b/test/test_timeout.rb @@ -60,6 +60,11 @@ class TestTimeout < Test::Unit::TestCase assert_nothing_raised(ArgumentError, bug9354) do assert_equal(:ok, timeout(100, err) {:ok}) end + assert_raise_with_message(err, /execution expired/) do + timeout 0.01, err do + sleep 3 + end + end end def test_exit_exception -- cgit v1.2.3