fixes spacing

This commit is contained in:
rgarcia
2015-08-16 22:45:43 +02:00
parent 57530926a1
commit bea38226fe
17 changed files with 72 additions and 72 deletions

View File

@@ -9,15 +9,15 @@ FactoryGirl.define do
end
factory :debate do
sequence(:title) {|n| "Debate #{n} title"}
description 'Debate description'
terms_of_service '1'
sequence(:title) { |n| "Debate #{n} title" }
description 'Debate description'
terms_of_service '1'
association :author, factory: :user
end
factory :vote do
association :votable, factory: :debate
association :voter, factory: :user
association :voter, factory: :user
vote_flag true
end
@@ -36,7 +36,7 @@ FactoryGirl.define do
end
factory :tag, class: 'ActsAsTaggableOn::Tag' do
sequence(:name) {|n| "Tag #{n} name"}
sequence(:name) { |n| "Tag #{n} name" }
trait :featured do
featured true