Update the factories

This commit is contained in:
Tyrel Souza 2014-04-21 11:28:45 -04:00
parent 8be8c4142d
commit 420aec8363
2 changed files with 32 additions and 24 deletions

View File

@ -1,22 +1,29 @@
FactoryGirl.define do FactoryGirl.define do
factory :campaign do factory :campaign do
sequence(:clientid) { |x| "clientid#{x}" } sequence(:clientid) { |x| x }
sequence(:billingcode) { |x| "billingcode#{x}" } sequence(:billingcode) { |x| "billingcode#{x}" }
sequence(:listingcode) { |x| "listingcode#{x}" } sequence(:listingcode) { |x| "listingcode#{x}" }
advertisername "MyName1" address "123 Anywhere Street"
address1 "addr1_1" advertisername "Bob's BBQ"
address2 "addr2_1" awards "Best in BBQ"
city "Mycity" background "Bob started in Memphis"
state "MyState" businessphone "5555551000"
zip "88888" categories "Food, BBQ, Southern California, Restaurant, Cooking"
emailaddress "google@google.com" city "Some City"
customerfirstname "Name" companycolors "Brown, Red"
customerlastname "Last" contactphone "5555551212"
salesrep "SalesGuy" customerfirstname "Bob"
salesrepemail "email@sales.com" customerlastname "De Bbq"
businessphone "8005882300" description "Bob's BBQ is the best BBQ in the Some City area of Southern Cali"
contactphone "8005882301" emailaddress "bob@bobsbbq.com"
websiteurl "http://www.google.com/" facebookurl "facebook.com/bobsbbq"
productsandservices "BBQ, Catering, Parties, Lunch, Dinner"
state "CA"
targetaudience "Anyone with teeth"
tollfreephone "8005551212"
vpa "John Smith"
websiteurl "bobsbbq.com"
zip "90200"
processed false processed false
end end
end end

View File

@ -2,15 +2,16 @@
FactoryGirl.define do FactoryGirl.define do
factory :videolisting 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}" } sequence(:videocode) {|x| "video#{x}" }
producttypeid "IMPORTANT"
remoteassetsarchive "MyString"
voiceoverselection "MyString"
musicselection "MyString"
clientprovidedscript "MyString"
keywords "MyString"
focus "MyString"
notes "MyString"
asseturls "MyString, MyString2"
end end
end end