45 lines
1.2 KiB
Ruby
45 lines
1.2 KiB
Ruby
#For Guidance
|
|
#http://github.com/thoughtbot/factory_girl
|
|
# http://railscasts.com/episodes/158-factories-not-fixtures
|
|
|
|
|
|
Factory.define :profile do |p|
|
|
p.first_name "Robert"
|
|
p.last_name "Grimm"
|
|
p.person Person.new( :email => "bob@aol.com" )
|
|
end
|
|
|
|
Factory.define :person do |p|
|
|
p.email "bob-person@aol.com"
|
|
p.sequence(:url) {|n|"http://google-#{n}.com/"}
|
|
p.key_fingerprint GPGME::list_keys("Aditi").first.subkeys.first.fingerprint
|
|
p.profile Profile.new( :first_name => "Robert", :last_name => "Grimm" )
|
|
end
|
|
|
|
Factory.define :user do |u|
|
|
u.sequence(:email) {|n| "bob#{n}@aol.com"}
|
|
u.password "bluepin7"
|
|
u.password_confirmation "bluepin7"
|
|
u.url "www.example.com/"
|
|
u.key_fingerprint GPGME.list_keys(nil, true).first.subkeys.first.fingerprint
|
|
u.profile Profile.new( :first_name => "Bob", :last_name => "Smith" )
|
|
end
|
|
|
|
Factory.define :status_message do |m|
|
|
m.sequence(:message) {|n| "jimmy's #{n} whales"}
|
|
end
|
|
|
|
Factory.define :blog do |b|
|
|
b.sequence(:title) {|n| "bobby's #{n} penguins"}
|
|
b.sequence(:body) {|n| "jimmy's huge #{n} whales"}
|
|
end
|
|
|
|
|
|
Factory.define :bookmark do |b|
|
|
b.link "http://www.yahooligans.com/"
|
|
end
|
|
|
|
Factory.define :post do |p|
|
|
end
|
|
|
|
Factory.define(:comment) {}
|