Skip to content

Instantly share code, notes, and snippets.

@mathildathompson
Last active August 29, 2015 14:00
Show Gist options
  • Save mathildathompson/7ce97bc76faa05c67c9d to your computer and use it in GitHub Desktop.
Save mathildathompson/7ce97bc76faa05c67c9d to your computer and use it in GitHub Desktop.
#test, fixtures, tweets.yml
#You can create seed data very quickly;
gem 'factory-girl-rails'
#Going to create a factory that makes twweets
#In test folder create factories.rb
#In here we will have a tamplate for creating a user;
Go into the rails console
FactoryGirl.create(:user)
100.times do FactoryGirl.create_user end
FactoryGirl.create_list
factory :tweet do |f|
f.post
end
FactoryGirl.create(:tweet) #Factory girl not good at creating sample data; #You have to use Faker and Machinist;
gem install faker
Faker::Name.name => 'Alex Higgins'
FactoryGirl.create_user .with_tweets
FactoryGirl.create_list `:user_with_tweets 500
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment