Skip to content

Instantly share code, notes, and snippets.

@jjbohn
Created March 3, 2014 21:54
Show Gist options
  • Save jjbohn/9335466 to your computer and use it in GitHub Desktop.
Save jjbohn/9335466 to your computer and use it in GitHub Desktop.
Fabricator example for Lori
Fabricator(:user) do
username "jjbohn"
email "jjbohn@gmail.com"
password "P@$$w0rd"
end
Fabricator(:movie) do
title "The Big Lebowski"
end
Fabricator(:movie_entry) do
movie
user
seen true
own true
wishlist_see false
wishlist_own false
user_rating 97.2
user_comments "Thought it was great"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment