aboutsummaryrefslogblamecommitdiffstats
path: root/features/support/factories/blog_categories.rb
blob: eaf025c69cc4d49110f5a62acdd09d738ca7dc14 (plain) (tree)
1
2
3
4
                                     
                                            
                                      
   
Factory.define(:blog_category) do |f|
  f.sequence(:title) { |n| "Shopping #{n}" }
  f.posts {|p| [p.association(:post)]}
end