Last active
August 29, 2015 14:00
-
-
Save mathildathompson/7ce97bc76faa05c67c9d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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