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