エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
rspec-mocks の and_raise が ArgumentError になってしまう場合は例外クラスに引数を渡す - Qiita
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
rspec-mocks の and_raise が ArgumentError になってしまう場合は例外クラスに引数を渡す - Qiita
rspec-mocks の and_raise が ArgumentError になってしまう場合は例外クラスに引数を渡すRubyRSpec req... rspec-mocks の and_raise が ArgumentError になってしまう場合は例外クラスに引数を渡すRubyRSpec require 'spec_helper' require 'rack-timeout' class Klass end describe 'Rack::Timeout::RequestTimeoutException' do it 'bad' do expect(Klass).to receive(:new).and_raise(Rack::Timeout::RequestTimeoutException) expect { Klass.new }.to raise_error(Rack::Timeout::RequestTimeoutException) end it 'good' do expect(Klass).to receive(:new