clarion/spec/factories/events.rb

9 lines
150 B
Ruby

FactoryGirl.define do
factory :event do
title { |n| "Event #{n}" }
length { 60 }
abstract { 'foo' }
description { 'foo' }
end
end