Skip to content

Commit

Permalink
fixup! Set up the incrementing
Browse files Browse the repository at this point in the history
  • Loading branch information
svevang committed Oct 3, 2024
1 parent 67012e6 commit 6e0f6ab
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions test/factories/apple_episode_delivery_status_factory.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
FactoryBot.define do
factory :apple_episode_delivery_status, class: "Apple::EpisodeDeliveryStatus" do
association :episode

delivered { false }
asset_processing_attempts { 0 }
source_url { "http://example.com/audio.mp3" }
source_size { 1_048_576 } # 1 MB
source_filename { "episode_audio.mp3" }
enclosure_url { "http://cdn.example.com/audio.mp3" }
source_media_version_id { 1 }
source_fetch_count { 0 }
end
end

0 comments on commit 6e0f6ab

Please sign in to comment.