在MiniTest的assert_raises
/中检查异常消息的预期语法是什么must_raise
?
我正在尝试进行如下声明,"Foo"
预期错误消息在哪里:
proc { bar.do_it }.must_raise RuntimeError.new("Foo")
Answers:
您可以使用assert_raises
断言或must_raise
期望。
it "must raise" do
assert_raises RuntimeError do
bar.do_it
end
-> { bar.do_it }.must_raise RuntimeError
lambda { bar.do_it }.must_raise RuntimeError
proc { bar.do_it }.must_raise RuntimeError
end
如果您需要测试错误对象上的某些内容,则可以从断言或期望中获取,如下所示:
describe "testing the error object" do
it "as an assertion" do
err = assert_raises RuntimeError { bar.do_it }
assert_match /Foo/, err.message
end
it "as an exception" do
err = ->{ bar.do_it }.must_raise RuntimeError
err.message.must_match /Foo/
end
end
Minitest::Spec
而不是Minitest::Test
。仅当使用时,Spec DSL(包括期望)才可用Minitest::Spec
。
Minitest尚未(尚未)为您提供检查实际异常消息的方法。但是您可以添加一个辅助方法来实现它,并扩展ActiveSupport::TestCase
类以在rails测试套件中的任何地方使用,例如:test_helper.rb
class ActiveSupport::TestCase
def assert_raises_with_message(exception, msg, &block)
block.call
rescue exception => e
assert_match msg, e.message
else
raise "Expected to raise #{exception} w/ message #{msg}, none raised"
end
end
并在测试中使用它,例如:
assert_raises_with_message RuntimeError, 'Foo' do
code_that_raises_RuntimeError_with_Foo_message
end
must_raise
它来实现,因为它为您提供了错误的实例,因此您可以自己检查该消息。
must_raise
过。
为了增加一些最新的发展,过去已经进行了一些讨论,以增加assert_raises_with_message
最小测试的运气。
当前,有一个有希望的拉动请求合并等待合并。如果以及何时合并,我们将能够使用assert_raises_with_message
而不必自己定义。
同时,有一个名为minitest-bonus-assertions的方便的小宝石,它精确地定义了该方法以及其他方法,因此您可以立即使用它。有关更多信息,请参阅文档。