amaseuk
amaseuk

Reputation: 2155

Sample/Dummy Data Generation in Rails 3

Is there a standard gem for creating data for testing purposes for Rails 3?

I am interested in using Faker or Forgery but is there a better approach?

What is the best way to generate and use sample data?

Upvotes: 0

Views: 3024

Answers (1)

karlfreeman
karlfreeman

Reputation: 588

The two I'd recommend using would be factory_girl_rails by Thoughtbot and faker. These are by far the best two for generating sample data.

Upvotes: 1

Related Questions