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-09 18:12:14 +00:00
|
|
|
sequence(:videocode) {|x| "video#{x}" }
|
|
|
|
producttypeid "IMPORTANT"
|
2014-04-07 18:41:34 +00:00
|
|
|
remoteassetsarchive "MyString"
|
|
|
|
voiceoverselection "MyString"
|
|
|
|
musicselection "MyString"
|
|
|
|
clientprovidedscript "MyString"
|
|
|
|
keywords "MyString"
|
|
|
|
focus "MyString"
|
|
|
|
notes "MyString"
|
2014-04-15 17:19:30 +00:00
|
|
|
asseturls "MyString, MyString2"
|
2014-04-07 18:41:34 +00:00
|
|
|
end
|
|
|
|
end
|