osem-fcy/spec/factories/qanswer.rb
Aditya Prakash ccc28cdc90 Add test for QuestionsController
new method was dead code.
@questions_conference was dead variable.
assignment of question's foreign key was unnecessary.
fixes in type of flash messages.
2016-02-25 12:42:55 +05:30

9 lines
194 B
Ruby

# Read about factories at https://github.com/thoughtbot/factory_girl
FactoryGirl.define do
factory :qanswer do
question
answer
registrations { [create(:registration)] }
end
end