Skip to content

Instantly share code, notes, and snippets.

@jovanmaric
jovanmaric / avatar_uploader.rb
Last active September 20, 2022 19:52
Testing shrine validations with RSpec
# app/uploaders/avatar_uploader.rb
class AvatarUploader < Shrine
plugin :validation_helpers
Attacher.validate do
validate_mime_type_inclusion %w[image/jpeg]
validate_max_size 10.megabytes
end
end