feature test for submitting a proposal

This commit is contained in:
Chrisbr 2014-05-12 13:19:09 +02:00
parent 4e6fcb0e7d
commit cfe02baf02
2 changed files with 61 additions and 0 deletions

View file

@ -0,0 +1,10 @@
# Read about factories at https://github.com/thoughtbot/factory_girl
FactoryGirl.define do
factory :event_type do
title 'Example Event Type'
length 30
minimum_abstract_length 0
maximum_abstract_length 500
end
end