2018-05-07 16:47:29 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2018-09-03 20:48:28 +02:00
|
|
|
# Read about factories at https://github.com/thoughtbot/factory_bot
|
2015-04-14 17:33:59 +02:00
|
|
|
|
2018-09-03 20:44:39 +02:00
|
|
|
FactoryBot.define do
|
2015-04-14 17:33:59 +02:00
|
|
|
factory :answer do
|
2018-09-08 03:58:50 +02:00
|
|
|
title { 'Do you?' }
|
2015-04-14 17:33:59 +02:00
|
|
|
end
|
|
|
|
|
end
|