Files
old-holivud2/spec/factories/edl_events.rb
2020-05-31 22:38:19 +02:00

16 lines
337 B
Ruby

FactoryBot.define do
factory :edl_event do
channel "V"
start_time "start_time"
timecode_in "timecode_in"
timecode_out "timecode_out"
duration "duration"
source_file_name "source_file_name"
clip_name "clip_name"
description "description"
matches []
initialize_with { new(attributes) }
end
end