Skip to content

Instantly share code, notes, and snippets.

@pascalesdedy
Last active October 20, 2018 15:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pascalesdedy/f18cd3c0bfbff536bb67663e8ddb65f9 to your computer and use it in GitHub Desktop.
Save pascalesdedy/f18cd3c0bfbff536bb67663e8ddb65f9 to your computer and use it in GitHub Desktop.
spec/factories/article.rb - used for creating CRUD using simple TDD
FactoryBot.define do
factory :article do
title { Faker::Lorem.word }
content { Faker::Lorem.paragraph(2) }
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment