vidpush/spec/factories/videolistings.rb
2014-04-21 11:28:45 -04:00

18 lines
743 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..."
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
sequence(:videocode) {|x| "video#{x}" }
end
end