aboutsummaryrefslogtreecommitdiffstats
path: root/spec/factories/blog_categories.rb
blob: 31ec28b8c6952a9772f59851ae622deae292ba63 (plain) (blame)
1
2
3
4
5
FactoryGirl.define do
  factory :blog_category, :class => 'refinery/blog_category' do
    sequence(:title) { |n| "Shopping #{n}" }
  end
end