vidpush/spec/factories/videolistings.rb

16 lines
645 B
Ruby
Raw Normal View History

2014-04-07 18:41:34 +00:00
# Read about factories at https://github.com/thoughtbot/factory_girl
FactoryGirl.define do
factory :videolisting do
2014-04-21 15:28:45 +00:00
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"
2014-04-24 20:33:48 +00:00
producttypeid 721
toneofvideo "Upbeat, targeting families but also show business functions."
2014-04-21 15:28:45 +00:00
voiceoverselection 3
2014-04-24 20:33:48 +00:00
published {|x| true }
sequence(:videocode) {|x| "video#{x}" }
2014-04-07 18:41:34 +00:00
end
end