cc4f1e9c13
Introduce an abstraction that is going to be used to propose models for other models that can accept propositions.
9 lines
150 B
Ruby
9 lines
150 B
Ruby
FactoryGirl.define do
|
|
factory :event do
|
|
title { |n| "Event #{n}" }
|
|
length { 60 }
|
|
abstract { 'foo' }
|
|
description { 'foo' }
|
|
end
|
|
end
|