Merge pull request #81 from openSUSE/review_140427_restyle_factories

Style factories. Trigger houndci
This commit is contained in:
Artem Chernikov 2014-04-30 15:03:03 +02:00
commit 60b5f876c6
2 changed files with 9 additions and 9 deletions

View file

@ -2,9 +2,9 @@
FactoryGirl.define do
factory :call_for_papers do
start_date Date.today - 1
end_date Date.today + 7
hard_deadline Date.today + 8
description "We call for papers"
start_date Date.today - 1
end_date Date.today + 7
hard_deadline Date.today + 8
description 'We call for papers'
end
end

View file

@ -2,11 +2,11 @@
FactoryGirl.define do
factory :conference do
title "The dog and pony show"
short_title "dps14"
social_tag "dps14"
timezone "Amsterdam"
contact_email "admin@example.com"
title 'The dog and pony show'
short_title 'dps14'
social_tag 'dps14'
timezone 'Amsterdam'
contact_email 'admin@example.com'
start_date Date.today
end_date Date.tomorrow
end