0
0

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 3 years have passed since last update.

ファイルの有無を確認する単体テストについて

Posted at

商品出品機能の単体テストを行った際に以下のようなメッセージが表示された。

ActiveSupport::MessageVerifier::InvalidSignature

調べてみるとFactoryBotでimageの情報をFakerを用いて用意していたことが誤りだったようだった。
※型(stringやintegerなど)の違いによるもの

下記のようにimageファイルを用意したところ事象は解決した。

after(:build) do |item|
  item.image.attach(io: File.open('public/images/test.png'), filename: 'test_image.png')
end
0
0
0

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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?