spec/factories/topic_type.rb

Summary

Maintainability
A
0 mins
Test Coverage
FactoryGirl.define do
  factory :topic_type do
    sequence(:name) { |n| "Topic Type #{n}" }
    description 'A description of a topic type'
  end
end