saasbook

factory_example.rb

Aug 16th, 2013
436
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.17 KB | None | 0 0
  1. # spec/factories/movie.rb
  2.  
  3. FactoryGirl.define do
  4.   factory :movie do
  5.     title 'A Fake Title' # default values
  6.     rating 'PG'
  7.     release_date { 10.years.ago }
  8.   end
  9. end
Add Comment
Please, Sign In to add comment