How do I stub a method to raise an error using Ruby MiniTest?
require “minitest/autorun” class MyModel def my_method; end end class TestRaiseException < MiniTest::Unit::TestCase def test_raise_exception model = MyModel.new raises_exception = -> { raise ArgumentError.new } model.stub :my_method, raises_exception do assert_raises(ArgumentError) { model.my_method } end end end