2016-09-24 11:00:46 +08:00
|
|
|
# frozen_string_literal: true
|
2017-11-25 11:23:47 -08:00
|
|
|
|
2018-03-10 08:10:09 -08:00
|
|
|
# lets you type create(:user) instead of FactoryBot.create(:user)
|
2015-12-16 22:16:02 +08:00
|
|
|
RSpec.configure do |config|
|
2018-03-10 08:10:09 -08:00
|
|
|
config.include FactoryBot::Syntax::Methods
|
2015-12-16 22:16:02 +08:00
|
|
|
end
|