2014-04-01 17:09:10 +08:00
|
|
|
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
|
2018-05-19 17:07:08 +08:00
|
|
|
FactoryBot.define do
|
2014-04-01 17:09:10 +08:00
|
|
|
factory :subscribe do
|
2019-04-22 22:07:17 +08:00
|
|
|
email { "tester@mail.com" }
|
|
|
|
enable { false }
|
2014-04-01 17:09:10 +08:00
|
|
|
end
|
|
|
|
end
|