test_helper.rb: factor out upload test helpers.

This commit is contained in:
evazion
2017-02-03 19:45:46 -06:00
parent 1511118bba
commit 9b16c45edc
4 changed files with 28 additions and 27 deletions

View File

@@ -0,0 +1,23 @@
module UploadTestHelper
def upload_file(path, content_type, filename)
tempfile = Tempfile.new(filename)
FileUtils.copy_file(path, tempfile.path)
(class << tempfile; self; end).class_eval do
alias local_path path
define_method(:tempfile) {self}
define_method(:original_filename) {filename}
define_method(:content_type) {content_type}
end
tempfile
end
def upload_jpeg(path)
upload_file(path, "image/jpeg", File.basename(path))
end
def upload_zip(path)
upload_file(path, "application/zip", File.basename(path))
end
end