Sha256: e02e05d16e91901c4cb303e9913e628efbb8ce2476959d4ae65ee70e083a7af9
Contents?: true
Size: 442 Bytes
Versions: 22
Compression:
Stored size: 442 Bytes
Contents
require 'spec_helper' describe "Attachment Definitions" do it 'returns all of the attachments on the class' do reset_class "Dummy" Dummy.has_attached_file :avatar, {path: "abc"} Dummy.has_attached_file :other_attachment, {url: "123"} Dummy.do_not_validate_attachment_file_type :avatar expected = {avatar: {path: "abc"}, other_attachment: {url: "123"}} expect(Dummy.attachment_definitions).to eq expected end end
Version data entries
22 entries across 22 versions & 5 rubygems