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..."
|
|
|
|
focus "Catering and Bob's abilityto serve large crowds"
|
|
|
|
keywords "Catering, Large Parties, Birthdays, Celebrations"
|
|
|
|
musicselection 5
|
|
|
|
notes "Bob would like to focus on family gatherings"
|
|
|
|
producttypeid 720
|
|
|
|
toneofvideo "Upbeat, targeting familys but also show business functions."
|
|
|
|
voiceoverselection 3
|
2014-04-09 18:12:14 +00:00
|
|
|
sequence(:videocode) {|x| "video#{x}" }
|
2014-04-21 15:28:45 +00:00
|
|
|
|
2014-04-07 18:41:34 +00:00
|
|
|
end
|
|
|
|
end
|