vidpush/spec/factories/videolistings.rb
2014-05-29 16:57:34 -04:00

17 lines
662 B
Ruby

# Read about factories at https://github.com/thoughtbot/factory_girl
FactoryGirl.define do
factory :videolisting do
asseturls "http://s3.amazon.com/555555/catering.jpg,http://s3.amazon.com/555555/bbq.jpg,http://s3.amazon.com/555555/bob.jpg,http://s3.amazon.com/555555/party.jpg"
clientprovidedscript "Bob's BBQ knows how to cater your next event..."
musicselection 5
notes "Bob would like to focus on family gatherings"
producttypeid 721
toneofvideo "Upbeat, targeting families but also show business functions."
voiceoverselection 3
on_s3 false
published {|x| false }
sequence(:videocode) {|x| "video#{x}" }
end
end