CarrierWaveを使用していてRSpec実行した後のアップロードファイルを削除したいとき
下記を追記すればいいという記事をいくつか見かけた。
spec/rails_helper.rb
config.after(:suite) do
FileUtils.rm_rf("#{Rails.root}/public/uploads") #←ファイルがアップされるパス指定
end
.gigtinoreにパスを追記するだけで上記は必要なくなる。
public/uploads
Go to list of users who liked
More than 1 year has passed since last update.
CarrierWaveを使用していてRSpec実行した後のアップロードファイルを削除したいとき
下記を追記すればいいという記事をいくつか見かけた。
config.after(:suite) do
FileUtils.rm_rf("#{Rails.root}/public/uploads") #←ファイルがアップされるパス指定
end
.gigtinoreにパスを追記するだけで上記は必要なくなる。
public/uploads
Register as a new user and use Qiita more conveniently
Go to list of users who liked