Sha256: 6c3714972a7e131e54f13c3164ad5f5b393fa61400e7c75c0386abe2ad00d7d1
Contents?: true
Size: 1.2 KB
Versions: 10
Compression:
Stored size: 1.2 KB
Contents
module Pageflow FactoryBot.define do factory :audio_file, :class => AudioFile do entry uploader { create(:user) } attachment_on_s3 { File.open(Engine.root.join('spec', 'fixtures', 'et.ogg')) } transient do used_in { nil } end before(:create) do |file, evaluator| file.entry = evaluator.used_in.entry if evaluator.used_in end after(:create) do |file, evaluator| create(:file_usage, :file => file, :revision => evaluator.used_in) if evaluator.used_in end trait :on_filesystem do attachment_on_filesystem { File.open(Engine.root.join('spec', 'fixtures', 'et.ogg')) } attachment_on_s3 { nil } state { 'not_uploaded_to_s3' } end trait :uploading_to_s3_failed do attachment_on_filesystem { File.open(Engine.root.join('spec', 'fixtures', 'et.ogg')) } attachment_on_s3 { nil } state { 'uploading_to_s3_failed' } end trait :waiting_for_confirmation do state { 'waiting_for_confirmation' } end trait :encoding_failed do state { 'encoding_failed' } end trait :encoded do state { 'encoded' } end end end end
Version data entries
10 entries across 10 versions & 1 rubygems