Skip to content

Instantly share code, notes, and snippets.

@takuyan
Created December 27, 2012 13:21
Show Gist options
  • Save takuyan/4388348 to your computer and use it in GitHub Desktop.
Save takuyan/4388348 to your computer and use it in GitHub Desktop.
describe User do
it { should have_attached_file(:avatar) }
it { should validate_attachment_presence(:avatar) }
it { should validate_attachment_content_type(:avatar).
allowing('image/png', 'image/gif').
rejecting('text/plain', 'text/xml') }
it { should validate_attachment_size(:avatar).
less_than(2.megabytes) }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment