8
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

~memo~ Rspecでraise_errorのメッセージをテストする

Last updated at Posted at 2020-08-27

raise_errorをした後のメッセージが正しいことを検査したかったのですが、色々探してやっとやり方が見つかったので忘れないようにメモします。

example "RecordInvalidが発生し、エラーメッセージが正しくセットされる" do
  expect { service }.to(raise_error { |e|
    expect(e.error_message).to(eq("hogehoge_error"))
  })
end

ブロック取って中で比較できるとは全然知りませんでした・・・

<追記>

example "RecordInvalidが発生し、エラーメッセージが正しくセットされる" do
  expect { service }.to(raise_error(RecordInvalid) { |e|
    expect(e.error_message).to(eq("hogehoge_error"))
  })
end

として、Errorクラスも一緒に確認することも可能でした!

8
1
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?