Skip to content

Instantly share code, notes, and snippets.

@HeroicEric
Created October 26, 2011 19:28
Show Gist options
  • Select an option

  • Save HeroicEric/1317512 to your computer and use it in GitHub Desktop.

Select an option

Save HeroicEric/1317512 to your computer and use it in GitHub Desktop.
require 'factory_girl'
FactoryGirl.define do
factory :post do
title "Sample Post"
body "This is the body of a well known sample post."
end
end
AND
require 'factory_girl'
FactoryGirl.define do
factory :post do
title "Sample Post"
body "This is the body of a well known sample post."
slug "sample-post"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment