2015-12-16 00:07:31 -05:00
|
|
|
# frozen_string_literal: false
|
2010-04-30 11:26:34 -04:00
|
|
|
require 'test/unit'
|
|
|
|
class TestAssertion < Test::Unit::TestCase
|
|
|
|
def test_wrong_assertion
|
|
|
|
error, line = assert_raise(ArgumentError) {assert(true, true)}, __LINE__
|
|
|
|
assert_match(/assertion message must be String or Proc, but TrueClass was given/, error.message)
|
|
|
|
assert_match(/\A#{Regexp.quote(__FILE__)}:#{line}:/, error.backtrace[0])
|
|
|
|
end
|
2016-05-18 23:46:20 -04:00
|
|
|
|
|
|
|
def test_timeout_separately
|
|
|
|
assert_raise(Timeout::Error) do
|
|
|
|
assert_separately([], <<~"end;", timeout: 0.1)
|
|
|
|
sleep
|
|
|
|
end;
|
|
|
|
end
|
|
|
|
end
|
2017-11-02 08:29:33 -04:00
|
|
|
|
|
|
|
def return_in_assert_raise
|
|
|
|
assert_raise(RuntimeError) do
|
|
|
|
return
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_assert_raise
|
|
|
|
assert_raise(MiniTest::Assertion) do
|
|
|
|
return_in_assert_raise
|
|
|
|
end
|
|
|
|
end
|
2010-04-30 11:26:34 -04:00
|
|
|
end
|