0
0

More than 1 year has passed since last update.

【RSpec】テスト後に画像ファイルを削除したいとき

Posted at

CarrierWaveを使用していてRSpec実行した後のアップロードファイルを削除したいとき
下記を追記すればいいという記事をいくつか見かけた。

spec/rails_helper.rb
config.after(:suite) do
  FileUtils.rm_rf("#{Rails.root}/public/uploads") #←ファイルがアップされるパス指定
end

.gigtinoreにパスを追記するだけで上記は必要なくなる。

public/uploads
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