aboutsummaryrefslogtreecommitdiffstats
path: root/spec/factories/blog_categories.rb
blob: 82f629b4b87dae92086ae09d7344e34ccf625507 (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