Skip to content

Instantly share code, notes, and snippets.

@czj
Created May 4, 2012 14:54
Show Gist options
  • Save czj/2595279 to your computer and use it in GitHub Desktop.
Save czj/2595279 to your computer and use it in GitHub Desktop.
Rails 3+ minitest file attachement helper (for upload)
def sample_file(extension)
path = Rails.root.join('spec', 'files', "sample.#{extension}")
type = Mime::Type.lookup_by_extension(extension)
Rack::Test::UploadedFile.new(path, type)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment