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