I have a model that broke my application on Hereku. I read the logs and I saw that I needed to require 'zip'
Now I am not sure why it worked on my local or on CI but I would like to write a test that would make sure that require 'zip'
in on that model
my model is really simple
class File < ApplicationRecord
require 'zip' # this is the line I am not sure how to test
has_one_attached :zip_file
end
Thanks for all the help